Created
August 28, 2018 03:54
-
-
Save jsburklund/3321b49d2fc6c41cd853091810e543cb to your computer and use it in GitHub Desktop.
Do something in a particular set of subdirectories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for D in `find . -type d -name "2018-0[6,7]-??"` | |
do | |
echo "" > $D/symphony.py.log | |
echo "" > $D/airflow-log-cleanup.py.log | |
# Do other stuff in the subdirectory | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment