Ticket #1199: CyrDirTest.sh

File CyrDirTest.sh, 264 bytes (added by siarzhuk, 17 years ago)

The script used to create directory and nested file with cyrillic characters in names.

Line 
1#!/bin/sh
2
3#
4# A test script to show the possible problem with non-latin characters on BFS
5#
6
7DIR="$1 Это, парни, каталожек!"
8FILE="А это - файлец, однако!"
9
10mkdir "$DIR"
11cd "$DIR"
12echo "Всем привет! ;-P" >> "$FILE"
13cd ..