Explorar el Código

added munzip command

master
mort hace 8 años
padre
commit
ea3e119cb1
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. 17
    0
      bin/munzip

+ 17
- 0
bin/munzip Ver fichero

@@ -0,0 +1,17 @@
#!/bin/bash

if [ "$1" = "" ]; then
echo "Usage: munzip <file>";
exit 1;
fi

if [ "$1" = *.tar.gz ]; then
tar xzf "$1"
elif [ "$1" = *.tar.bz2 ]; then
tar jxf "$1"
elif [ "$1" = *.zip ]; then
unzip "$1"
else
echo "Unknown format."
exit 1
fi

Cargando…
Cancelar
Guardar