Como posso fazer a descompactação recursiva do terminal? [duplicado]

1

Dentro de um zip eu tenho mais um arquivo zip

Eu quero um comando para extrair tudo de uma vez.

    
por Kiran Reddy 01.03.2018 / 10:29

1 resposta

2

Minha sugestão é criar um comando personalizado adicionando a seguinte função no seu .bashrc :

# Recursive UNZIP 
# - covers only the firs level of the recursion; 
# - works only with one input file
unzipr () {
    # Get the users input
    TARGET_ZIP_FILE=""

    # Get the list of sub archive zip files
    ZIP_LIST="$(unzip -l "$TARGET_ZIP_FILE" | awk 'NR > 1 && $NF ~ /zip/ { print $NF }')"

    # Output the list of sub archive zip files
    if [ ! -z "${ZIP_LIST}" ]; then
        echo 'List of Sub Archives:'
        for ZIP in $ZIP_LIST; do echo -e " - $ZIP"; done; echo
    else
        echo "Sub Archives Not Found."
    fi

    # Extract and unzip the files
    for ZIP in $ZIP_LIST; do
        # Ask the user for his/her preferences
        echo -n "Do you want to extract and unzip \"$ZIP\" [Y|n]: "
        read preference

        # Extract the file according to the users preferences
        if [ -z "${preference}" ] || [[ "${preference}" =~ ^(y|Y).* ]]; then
            unzip "$TARGET_ZIP_FILE" "$ZIP"
            unzip "$ZIP"
            rm "$ZIP"
            echo
        fi
    done
}

Adicione essas linhas à parte inferior de ~/.bashrc , em seguida, faça source ~/.bashrc e você terá um comando chamado unzipr . Veja como funciona:

    
por pa4080 01.03.2018 / 13:45