About 68,900 results
Open links in new tab
  1. How can I see folders from terminal? - Ask Ubuntu

    Oct 26, 2010 · How to show hidden folders as well? ls -d .*/ shows only hidden folders. How to view BOTH hidden and non-hidden folders? I can only think of ls -d */ .*/ Anything better?

  2. How to list all the files in a tree (a directory and its subdirs)?

    Nov 30, 2010 · 7 ls is the standard command to list files in Ubuntu and other Linux and Unix operating systems. ls is particularly useful to learn because you will find it installed on every Unix system you …

  3. Get a list of all files in folder and sub-folder in a file

    Jul 27, 2018 · How do I get a list of all files in a folder, including all the files within all the subfolders and put the output in a file?

  4. How to show the full path of a file or directory in the terminal?

    Mar 13, 2014 · To display the full path of a file in the terminal just drag the file's icon into the terminal, and the full path of the file will be displayed enclosed by two apostrophes (single quotation mark …

  5. How do I determine the total size of a directory (folder) from the ...

    To get both the actual and apparent total size of a directory, one may use ncdu (sudo apt-get install ncdu): Keyboard shortcut in ncdu to toggle between showing disk usage and showing apparent size: a.

  6. How to list recursive file sizes of files and directories in a ...

    86 How do I list all the files in a directory and their recursive file sizes? ---edit I want to see the sizes 'rolled up' to the parent directories in the directory listed. I don't want to see the child directories or …

  7. How to show current permissions of a folder - Ask Ubuntu

    May 17, 2011 · Now the really interesting part for your is the line of the . element as that represents the current directory. The permissions of the current directory in my sample drwxr-xr-x would mean the …

  8. How to find owner and group of a directory? - Ask Ubuntu

    Aug 12, 2012 · 27 To get the owner and group of a directory you need ls -ld /path/to/folder Otherwise you get the attributes of the contents of the directory.

  9. How can I list the files in other (non-current) directory?

    Mar 23, 2013 · If ls lists the content of the current directory, is there a similar command that list the content of a non current directory, without using cd?

  10. How to print the directory tree in terminal - Ask Ubuntu

    Mar 8, 2014 · 19 There is a program called tree which lists directory content in a tree structure. I think it's in the repositories (or even installed) sudo apt install tree tree -d /path/to/directory Check this link for …