We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22e3a2a commit 5b21711Copy full SHA for 5b21711
bash/ss-functions.txt
@@ -1810,17 +1810,17 @@ function ss_truncate {
1810
1811
## ss_untar (keep flag order) ##
1812
function ss_untar {
1813
- command tar -xf -- "$@"
+ command tar -xf "$1" "${@:2}"
1814
}
1815
1816
## ss_untargz (keep flag order) ##
1817
function ss_untargz {
1818
- command tar -zxf -- "$@"
+ command tar -zxf "$1" "${@:2}"
1819
1820
1821
## ss_unzip ##
1822
function ss_unzip {
1823
- command unzip -o -- "$@" > /dev/null
+ command unzip -o "$@" > /dev/null
1824
1825
1826
## ss_wget ##
0 commit comments