Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'alphabetical listing' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
alphabetical listing
Authored by: Anonymous on Jul 20, '02 06:17:56PM
Writing to a file: ls -ls > filelist.txt for long file info ls -1 > filelist.txt (that's -one) for just file names. Writing to clipboard: ls -ls | pbcopy for long file info ls -1 | pbcopy (that's -one) for just file names. Obviously, you can use any arguments to ls to get your preferred formatting.

[ Reply to This | # ]