blob: d1ff869df7eb942b4950429abe30c5af68ece16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#print
This time you have to get a list of the files whose names begin
with "memo", but sorted in order of last change, most recent first,
as produced by "ls -t". Get the list in file "gorp",
then type "ready".
#create memo1
first line
#create memo3
third line
#create memo2
second line
#user
ls -t memo* >X1
#cmp X1 gorp
#log
#next
2.1d 10
|