Hi,

How can I get a text file saved from an output of everything on the
drive, please? What commands do I need to use and what would be the
syntax of it/them please?

Not sure I understand perfectly, but for example with

ls -l > my_text_file.txt

you will get the output of 'ls -l' in the file my_text_file.txt

The '>' does the trick.

If you want to append some text to an already existing file, use '>>'.

Hope that helps.

Best

Steve

Reply via email to