This website collects cookies to deliver better user experience
find
-ls
find /home/babak -name "*bash*" -ls
11053679 4 -rw-r--r-- 1 babak babak 3772 Nov 25 12:45 /home/babak/.bashrc 11010465 28 -rw------- 1 babak babak 24763 Nov 16 12:26 /home/babak/.bash_history
-exec
find ~ -name '*.txt' -exec grep -q "hello" {} \; -print
.txt
-print
{}
\;
find ~ -name '*.zip' -not -exec zip -qT {} \; -print
zip -qT
-not
find . -type f -name '*.py' -not -path '*/venv/*' -not -path '*/__pycache__/*' -not -exec sh -c 'python3 -m autopep8 {} >/dev/null' \; -print
autopep8
>/dev/null
-not -path '*/venv/*'
-not -path '*/__pycache__/*'
venv
__pycache__
find . -type f -name '*.js' -not -exec sh -c 'eslint --no-eslintrc {} >/dev/null' \; -print
eslint
--no-eslintrc
.eslintrc
28
0