Skip to content

Instantly share code, notes, and snippets.

@spensireli
Created March 10, 2023 17:18
Show Gist options
  • Save spensireli/801ef8ced46a394a417ee1504d38c596 to your computer and use it in GitHub Desktop.
Save spensireli/801ef8ced46a394a417ee1504d38c596 to your computer and use it in GitHub Desktop.
Tar and Move Directory in One Line
mkdir /target/directory
cd /source/directory
tar -cvf - . | (cd /target/directory && tar xvf -)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment