you can redirect the output of a command to a file
for example
open a terminal, CD to the folder, and
(note that this also lists the folder names... try "man ls" for the help for ls command)
or use find:
find . -maxdepth 1 -type f -printf '%f\n' >foo.txt
then you can "cat" the file to see whats there.
for example
open a terminal, CD to the folder, and
Code:
ls >foo.txt or use find:
find . -maxdepth 1 -type f -printf '%f\n' >foo.txt
then you can "cat" the file to see whats there.
Code:
cat foo.txt Statistics: Posted by terribleted — Sun Feb 02, 2025 11:02 pm