Tag: list
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,…
Remove Extension in Shell Scripting
June 27, 2007
This command will list all the files a folder without their extensions. Comes handy when doing shell scripting perl -e…
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