Created
June 7, 2016 12:27
-
-
Save pascalwhoop/d94c6329274068d71507c0a176e626ad to your computer and use it in GitHub Desktop.
This file contains 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
FILES=/Users/pbr/Documents/Code/bash/* | |
for f in $FILES | |
do | |
echo "Processing $f file..." | |
# take action on each file. $f store current file name | |
source $f | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment