Created
August 5, 2019 14:12
-
-
Save kirkins/3ccf74c9cf9b2612eecb02586da5d4de 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
for d in */; do | |
if [ $d = "unique" ]; then | |
echo unique | |
else | |
cp "$d"/* unique | |
fi | |
done |
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
grep -or "$1" . | while read -r line ; do | |
l=$(echo "$line" | cut -d ":" -f 1) | |
cp "$l" result/ | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment