Skip to content

Instantly share code, notes, and snippets.

@frbl
Created September 10, 2014 09:42
Show Gist options
  • Save frbl/cae79f708cae75a20614 to your computer and use it in GitHub Desktop.
Save frbl/cae79f708cae75a20614 to your computer and use it in GitHub Desktop.
Copy all sty from a latex project to a directory single (depends om latexmk)
cat index.fdb_latexmk | grep .sty | awk -F' ' '{print $1}' | awk -F'"' '{print $2}' | xargs -J % cp % ~/test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment