How to Find Files
|Linux:
Find any file in /var/tmp that ends with the extension .py
1 | find /var/tmp/ -name *.py |
Windows:
Find any file in the current directory and beyond that ends with the extension .bat
1 | dir /b /s *.bat |
Linux:
Find any file in /var/tmp that ends with the extension .py
1 | find /var/tmp/ -name *.py |
Windows:
Find any file in the current directory and beyond that ends with the extension .bat
1 | dir /b /s *.bat |