Created
January 21, 2016 16:14
-
-
Save avtomaton/e0d6babfcc22d94029be to your computer and use it in GitHub Desktop.
simplest 1-velel bash directory walker
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
#!/bin/bash | |
for i in *; do | |
cd $i; | |
for f in *; do | |
echo $i/$f >> '../files.txt'; | |
done; | |
cd ..; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment