Updated from time to time
Do not search with/etc., go to the place where the file you want to search will be included (even recursively)
find . -name "*.log"
And. Reference Saba note | Recursive search using find or grep
If you want to run all the .py files in that directory one by one. (I don't know if that happens)
ls *.py | xargs -I {} python {}
Reference: [xargs] command-Create and execute command line: Linux basic command Tips (176) -@IT
When viewing some files
watch ls -ltr
When checking the contents of the file to be added with only one file
File name like less
After that, enter F to see the update at any time. Suspended with ctrl-C
Recommended Posts