extr/extr-modules/10-7zip

35 lines
1.0 KiB
Bash

#!/bin/bash
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with this program. If not, see <http://www.gnu.org/licenses/>.
#Copyright 2021 rexy712
extr_register_module '7zip'
extr_register_extensions '7zip' '\.7z$'
function do_7zip(){
local flags=()
if [ -n "$outloc" ];then
flags+=("-o${outloc}")
fi
if [ -n "$overwrite" ];then
flags+=("-y")
fi
if [ "$verbosity" == 0 ];then
7za x "${flags[@]}" "${passthrough_args[@]}" "$file" >/dev/null 2>&1
else
7za x "${flags[@]}" "${passthrough_args[@]}" "$file"
fi
}