Posts Tagged With: recursive

Recursive Grep

Tagged with: , , , ,

Recursively check a folder to find the given text using grep


grep -R "text" *
No Comments »

Linux Command to List all the Files Recursively

Tagged with: , , , , ,

Recursively list all files in the current folder and all the sub folders


ls -R

ls -R1
No Comments »

Listing all Files Recursively in Windows

Tagged with: , , , , , , ,

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]

No Comments »

List All Files in a Folder Recursively

Tagged with: , , , , , , ,

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

[tags]dir,ls,command,linux,folder,list,recursive,directory[/tags]

No Comments »