Quantcast
Channel: txt » dir
Browsing latest articles
Browse All 7 View Live

List All Files in a Folder Recursively

Save the list of all files in a folder – recursively. find .|sed 's/\.\///;' Another option is ls -R -1 Kind of like the DOS command ‘dir /s‘...

View Article



Listing all Files Recursively in Windows

Save the list of all files in a folder in windows – recursively. dir /s /b>FileList.txt [tags]command, dir, directory, folder, windows, list, ls ,recursive[/tags]

View Article

Linux Command to List all the Files Recursively

Recursively list all files in the current folder and all the sub folders ls -R ls -R1

View Article

Graphical representation of sub-directories

This command shows a graphical representation of the current sub-directories. ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'mand Original Article

View Article

tree Command

Show files and directories in a tree tree

View Article


Remove a Directory Recursively

Remove a directory called ‘dir’ and contents recursively rm -rf dir

View Article

Delete Multiple Folders

Remove two directories and their contents recursively rm -rf dir1 dir2

View Article
Browsing latest articles
Browse All 7 View Live




Latest Images