-
-
Save kgabis/d209a9b474f98687692a to your computer and use it in GitHub Desktop.
Copy/paste util
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 | |
cwd=$(pwd) | |
rm /tmp/.copy_tmp | |
for var in "$@" | |
do | |
echo "$cwd/$var" >> /tmp/.copy_tmp | |
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
#!/bin/bash | |
while read -r line; do cp $line .; done < /tmp/.copy_tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment