sh bash extract - bashprofile

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh bash extract - bashprofile相关的知识,希望对你有一定的参考价值。

function extract () {
    if [ -f $1 ] ; then
        case $1 in
            *.tar.bz2)  tar xjf $1      ;;
            *.tar.gz)   tar xzf $1      ;;
            *.bz2)      bunzip2 $1      ;;
            *.rar)      rar x $1        ;;
            *.gz)       gunzip $1       ;;
            *.tar)      tar xf $1       ;;
            *.tbz2)     tar xjf $1      ;;
            *.tgz)      tar xzf $1      ;;
            *.zip)      unzip $1        ;;
            *.Z)        uncompress $1   ;;
            *)          echo "'$1' cannot be extracted via extract()" ;;
        esac
    else
        echo "'$1' is not a valid file"
    fi
}

以上是关于sh bash extract - bashprofile的主要内容,如果未能解决你的问题,请参考以下文章

sh extract.sh

sh postgresql_dump_extract.sh

sh extract_sequences

sh 运行IBM Optim Extract

sh metaseq_extract_unmapped读取

bash PS1提示的三角形背景