1 ls
2 cd
3 exit
4 dir
5 cd names/
6 ls a*
7 ls *.[cChH]
8 ls *BSD*
9 ls *Linux*
10 ls
11 ls j?n
12 ls *j?n*
13 ls -- -*
14 ls ./-*
15 ls *'*'*'?'*
16 ls * '*' * '?' *
17 ls *[*]*[?]*
18 ls *cde*
19 ls *[[]cde]*
20 ls *\[cde]*
21 ls -a
22 ls .*
23 ls .[^.]*
24 ls .*[^.]*
25 echo zz*
26 ls zz*
27 echo a*
28 touch "file with spase"
29 touch 'file with long name'
30 touch one\ spase
31 touch o\'Reilly
32 ls -a
33 touch A:\\WINDOWS\\SYSTEM32
34 touch "Queen \"Live at Wembley '86\""
35 ls -a
36 echo *
37 touch "-bad-name-"
38 touch ./-bad-name-
39 ls -a
40 touch --bad-n@me-
41 touch - -bad-n@me-
42 touch -- bad-n@me-
43 touch -- -bad-n@me-
44 ls -a
45 cd
46 ls -a
47*
48 touch `< ~/touchlist`
49 ls
50 echo "Сегодня на улице `date +%Y` год."
51 echo $PATH
52 echo HHHHHHHHHH${PATH}HHHHHHHHHHHH
53 echo $((1/2*4))
54 echo $((4*1/2))
55 A=1
56 B=2
57 echo $((A+B))
58 echo ((A+$B))
59 echo $((A+$B))
60 echo (($A+$B))
61 echo ((A+$B))
62 echo((A+$B))
63 echo ((A+B))
64 cat /etc/passwd > newfile
65 less newfile
66 sort < /etc/passwd
67 mv /etc//passwd /tmp
68 mv /etc/passwd /tmp
69 mv /etc/passwd /tmp 2> errlog
70 cat errlog
71 mv /etc/passwd /tmp
72 mv /etc/passwd /tmp 2> /dev/null
73 cat >> unsorted
74 sort < unsorted > sorted
75 ls -a
76 cat bigfile | more
77 cat bigfile | less
78 mkdir /tmp/etccopy
79 cp -v /etc/* /tmp/etccopy/ 2>&1 | less
80* cp -v /etc/* /tmp/etccopy/ |
81 cp -v /etc/* /tmp/etccopy/ 2>&1 | /tmp/dirlist
82 cp -v /etc/* /tmp/etccopy/ 2>&1 > /tmp/dirlist
83 cp -v /etc/* /tmp/etccopy/ > /tmp/dirlist 2>&1
84 cat /etc/passwd | sort | tee sorted_passwd | less
85 history