Skip to content

Instantly share code, notes, and snippets.

@Irio
Created March 24, 2012 01:13
Show Gist options
  • Save Irio/2176969 to your computer and use it in GitHub Desktop.
Save Irio/2176969 to your computer and use it in GitHub Desktop.
Copying files through network using scp
## One file
$ scp my_file_name.mp3 user@ip:/home/user/destination/folder
## More than one file
# Pattern
$ scp *.mp3 user@ip:/home/user/destination/folder
# Recursive. Includes folders
$ scp -r * user@ip:/home/user/destination/folder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment