Skip to content

Instantly share code, notes, and snippets.

@rodreegez
Created December 12, 2010 19:46
Show Gist options
  • Save rodreegez/738271 to your computer and use it in GitHub Desktop.
Save rodreegez/738271 to your computer and use it in GitHub Desktop.
copy files from 1 directory into another
Beelzebub:~ Rodreegez$ mkdir dir1
Beelzebub:~ Rodreegez$ touch dir1/1
Beelzebub:~ Rodreegez$ touch dir1/2
Beelzebub:~ Rodreegez$ touch dir1/3
Beelzebub:~ Rodreegez$ touch dir1/4
Beelzebub:~ Rodreegez$ mkdir dir2
Beelzebub:~ Rodreegez$ cp dir1/* dir2/
Beelzebub:~ Rodreegez$ ls dir1
1 2 3 4
Beelzebub:~ Rodreegez$ ls dir2
1 2 3 4
Beelzebub:~ Rodreegez$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment