Tag: dir
Delete Multiple Folders
March 8, 2008
Remove two directories and their contents recursively rm -rf dir1 dir2
Remove a Directory Recursively
March 7, 2008
Remove a directory called ‘dir’ and contents recursively rm -rf dir
Graphical representation of sub-directories
February 8, 2008
This command shows a graphical representation of the current sub-directories. ls -R | grep “:” | sed -e ‘s/://’ -e…
Linux Command to List all the Files Recursively
December 1, 2007
Recursively list all files in the current folder and all the sub folders ls -R ls -R1
Listing all Files Recursively in Windows
September 29, 2007
Save the list of all files in a folder in windows – recursively. dir /s /b>FileList.txt [tags]command, dir, directory, folder,…
List All Files in a Folder Recursively
March 10, 2007
Save the list of all files in a folder – recursively. find .|sed ‘s/\.\///;’ Another option is ls -R -1…
Recent Comments