[student@pc21 ~]$ who [student@pc21 ~]$ date Птн Окт 24 06:47:04 PETST 2008 [student@pc21 ~]$ date u date: неверная дата `u' [student@pc21 ~]$ date - u date: лишний операнд `u' Попробуйте `date --help' для получения более подробного описания. [student@pc21 ~]$ date -u Чтв Окт 23 17:47:54 UTC 2008 [student@pc21 ~]$ cal 12.05.1992 [student@pc21 ~]$ cal 5 1992 Май 1992 Вс Пн Вт Ср Чт Пт Сб 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 [student@pc21 ~]$ type cd cd is a shell builtin [student@pc21 ~]$ type mkdir mkdir is /bin/mkdir [student@pc21 ~]$ type cat cat is /usr/bin/cat [student@pc21 ~]$ type cp cp is aliased to `cp -i' [student@pc21 ~]$ cd Documents [student@pc21 Documents]$ mkdir urok21 [student@pc21 Documents]$ cd urok21 [student@pc21 urok21]$ mkdir k1 [student@pc21 urok21]$ mkdir k2 [student@pc21 urok21]$ cd k1 [student@pc21 k1]$ mkdir name [student@pc21 k1]$ cd .. [student@pc21 urok21]$ cd k2 [student@pc21 k2]$ mkdir teach [student@pc21 k2]$ cd .. [student@pc21 urok21]$ cd k1 [student@pc21 k1]$ cd name [student@pc21 name]$ echo > f1 Град Константин [student@pc21 name]$ echo > f2 Grad Konstantin [student@pc21 name]$ ls f1 f2 [student@pc21 name]$ cat f1 f2 f3 Град Константин Grad Konstantin cat: f3: Нет такого файла или каталога [student@pc21 name]$ cat f1 f2 >> f3 [student@pc21 name]$ ls f1 f2 f3 [student@pc21 name]$ cp f3 student [student@pc21 name]$ ls f1 f2 f3 student [student@pc21 name]$ less f3 [student@pc21 name]$ cat student Град Константин Grad Konstantin [student@pc21 name]$ mv student /home/student/Documents/urok21 [student@pc21 name]$ ls f1 f2 f3 [student@pc21 name]$ cd .. [student@pc21 k1]$ cd .. [student@pc21 urok21]$ ls k1 k2 student [student@pc21 urok21]$ cd name bash: cd: name: Нет такого файла или каталога [student@pc21 urok21]$ cd k1 [student@pc21 k1]$ cd name [student@pc21 name]$ ls f1 f2 f3 [student@pc21 name]$ rm f3 rm: удалить обычный файл `f3'? y [student@pc21 name]$ ls f1 f2 [student@pc21 name]$ cd.. [student@pc21 k1]$ cd.. [student@pc21 urok21]$ cd k2 [student@pc21 k2]$ cd teach [student@pc21 teach]$ cat licey cat: licey: Нет такого файла или каталога [student@pc21 teach]$ cat > licey Профессиональный лицей № 22 Калининград, ул. Брамса, 9[student@pc21 teach]$ [student@pc21 teach]$