Skip to content

Instantly share code, notes, and snippets.

@dmohs
Last active March 13, 2020 13:51
Show Gist options
  • Save dmohs/f7027964826615dd26f623860c2ef2b7 to your computer and use it in GitHub Desktop.
Save dmohs/f7027964826615dd26f623860c2ef2b7 to your computer and use it in GitHub Desktop.
Mob programming bootstrap
function pullandextract() {
curl 'https://www.googleapis.com/storage/v1/b/broad-dmohs-public/o/test.tbz?alt=media' \
| tar -xv
}
function tarandpush() {
tar -cy . | \
curl 'https://www.googleapis.com/upload/storage/v1/b/broad-dmohs-public/o?uploadType=media&name=test.tbz' \
--data-binary @-
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment