Skip to content

Instantly share code, notes, and snippets.

@ricardobarantini
Created October 20, 2015 14:07
Show Gist options
  • Save ricardobarantini/f2cd26752fba572856c6 to your computer and use it in GitHub Desktop.
Save ricardobarantini/f2cd26752fba572856c6 to your computer and use it in GitHub Desktop.
Copy files from Homestead to another folder without vendor and node_modules folders
#!/bin/bash
rsync -av --exclude='*/node_modules/' --exclude='*/vendor/' --exclude='*/bower_components/' </path/from> </path/to>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment