Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

L S
Lv 7
L S asked in Computers & InternetSoftware · 9 years ago

Ubuntu - how do I do a bald listing format of all files and folders in subfolder?

If I were using DOS, I'd type this:

dir /s /b *.* > files.txt

and get this result:

C:\Example\FolderA

C:\Example\FolderB

C:\Example\FolderC

C:\Example\FolderD

C:\Example\FolderA\NewTextDocument.txt

C:\Example\FolderA\picture.bmp

C:\Example\FolderA\readme.txt

C:\Example\FolderA\word.doc

C:\Example\FolderB\readme.txt

C:\Example\FolderB\word.doc

C:\Example\FolderC\picture.bmp

C:\Example\FolderD\NewTextDocument.txt

C:\Example\FolderD\picture.bmp

C:\Example\FolderD\readme.txt

C:\Example\FolderD\word.doc

Is there a way to do this in Ubuntu? I can't seem to find appropriate parameters and keep getting the folder name followed by the files on the next line and then the next folder, etc.

Thanks.

1 Answer

Relevance
  • 9 years ago
    Favorite Answer

    I just got this answer:

    "@OP, if you really want to use ls, then format its output using awk

    ls -R /path | awk '

    /:$/&&f{s=$0;f=0}

    /:$/&&!f{sub(/:$/,"");s=$0;f=1;next}

    NF&&f{ print s"/"$0 }'

    "

    It's from here:

    http://stackoverflow.com/questions/1767384/ls-comm...

    Being on slackware (yes I am an old fossil) I have no idea whether Ubuntu installs awk by default or not. If not you can get it from the repositories though. No you can't do it just with ls. Do a man ls and you won't find the word path anywhere in the documentation. You'll have to pipe the output through awk.

    By the way, for /path substitute the path to the directories you want: /home/user for example.

Still have questions? Get your answers by asking now.