Skip to content

Instantly share code, notes, and snippets.

@9had
Last active July 13, 2019 19:19
Show Gist options
  • Save 9had/23f85fa94719ba5b312495bd3dc4dd91 to your computer and use it in GitHub Desktop.
Save 9had/23f85fa94719ba5b312495bd3dc4dd91 to your computer and use it in GitHub Desktop.
bash example copy folder a to folder b
#!/bin/bash
source=/Users/user1/one/
destination=/Users/user1/two/
cp -R $source $destination
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment