← 返回命令列表

Linux one-liner

一条命令解压常见压缩包

网络

a() { case $1 in *.tar.gz) tar xzf $1;; *.zip) unzip $1;; esac; }; a file

复制后可按需替换文件名、目录或参数。