Tag: folder
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
Seach for a String in a Folder using grep
February 13, 2008
Search string “test_text” at directory ‘/var/log’ and below grep test_text -R /var/log/*
Create a Directory Tree in One Command
January 15, 2008
You can create a directory tree using just one command in Linux mkdir -p /tmp/dir1/dir2
Recursive Grep
December 18, 2007
Recursively check a folder to find the given text using grep grep -R “text” *
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,…
Search Text in a Folder using grep
September 25, 2007
Search for a specific text in a folder using grep grep “fetchFeedPacksCustomize()” *.js [tags]grep,search,text,folder[/tags]
Recent Comments