how to create a reference file list ?

Asked by steve taylor

I have just about finished moving, organising, deleting duplicates and cataloging over 10 years of files and folders and have been laboriously opening each file in the terminal, using the 'ls' command then doing copy paste to Libra.

Well it's done now but thinking about it I have been looking for a gui that can produce a printable list, say an archiving tool.
I guess I am missing something as listing files is second nature to computing.

Can anyone suggest a solution on this?

Much appreciated

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu gnome-terminal Edit question
Assignee:
No assignee Edit question
Solved by:
Nathan Heafner
Solved:
Last query:
Last reply:
Revision history for this message
steve taylor (stevemail) said :
#1

Oh yes, I am using ubuntu all up to date.

Revision history for this message
Best Nathan Heafner (nathan1465-5) said :
#2

Hello Steve,
if all of these files are contained in the same folder you can use ls -R
http://ss64.com/bash/ls.html

-R, --recursive List subdirectories recursively

and then if you wanted you could send the output of that command to a text file by using

ls -R /path/to/your/directory > Desktop/yourexportedtext.txt

You could also print the output using LPR
http://ss64.com/bash/lpr.html

Revision history for this message
steve taylor (stevemail) said :
#3

That's a nice solution Nathan.

Just plugged 'ls -R' in and my terminal went into warp drive.
Brilliant stuff, ten pages of it.

Many thank's

Well solved : )

Revision history for this message
steve taylor (stevemail) said :
#4

Thanks Nathan Heafner, that solved my question.

Revision history for this message
Nathan Heafner (nathan1465-5) said :
#5

Anytime,
glad it worked!