Skip to content

Instantly share code, notes, and snippets.

@somatorio
Last active August 24, 2016 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save somatorio/feffe2ccb95b94375a33c8454cd00b33 to your computer and use it in GitHub Desktop.
Save somatorio/feffe2ccb95b94375a33c8454cd00b33 to your computer and use it in GitHub Desktop.
funcao para descompactar arquivos usando um container docker
unzip() {
local=$(cd $(dirname $1);pwd)
docker run --rm -it \
-u $(id -u):$(id -g) \
-v $local:/root/zip \
-w /root/zip \
alpine:3.4 unzip $(basename $1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment