Skip to content

Instantly share code, notes, and snippets.

@kevanmoothien
Created March 28, 2019 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevanmoothien/eea1bf56efe6e35cfe88695901a9312d to your computer and use it in GitHub Desktop.
Save kevanmoothien/eea1bf56efe6e35cfe88695901a9312d to your computer and use it in GitHub Desktop.
Read csv column and copy file to another folder
```bash
cat annotations.csv|while read line
do
read -d, col1 <<(echo $line)
echo "$col1"
cp "./$col1" "./images/$col1"
done
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment