Skip to content

Instantly share code, notes, and snippets.

@agmarrugo
Created July 26, 2012 14:11
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 agmarrugo/3182270 to your computer and use it in GitHub Desktop.
Save agmarrugo/3182270 to your computer and use it in GitHub Desktop.
Moving referenced images in a markdown file to another folder
for f in `grep -o '\..*png' myreport.txt`; do cp $f ../Public/myproject/ ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment