blob: f25c69ea15890395b0817a68c481a7cc4f887845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#print
Obtain a long listing (with "ls -l") of all files in this directory
whose names begin with capital letters, in a file
called "names".
Type "ready" when you're done.
#create STUFF
#create Nonsense
this is junk
#create abc
#create def
#
ls -l [A-Z]* >x1
#user
#cmp x1 names
#log
#next
3.1a 10
|