|
|
| Author |
Message |
NAYAZSHAIK
New User
Joined: 23 Jun 2004 Posts: 2
|
|
|
|
| CAN WE READ A FILE IN REVERSE ORDER(FROM DOWN TO UP) WITH USING SORT COMMAND?[/i][/b] |
|
| Back to top |
|
 |
References
|
Posted: Wed Jun 23, 2004 2:40 pm Post subject: Re: Can we read the file in REVERSE order |
 |
|
|
 |
bluebird
Specialist
Joined: 03 Feb 2004 Posts: 144
|
|
|
|
or try a bit of REXX coding using by (-x) on do clause....
| Code: |
do N=queued() to 1 by -1
say i.n
end
|
|
|
| Back to top |
|
 |
mmwife
Super Moderator
Joined: 30 May 2003 Posts: 1493
|
|
|
|
| or use Assembler Language. |
|
| Back to top |
|
 |
|
|