.bashrc aktualisiert
This commit is contained in:
16
.bashrc
16
.bashrc
@ -199,11 +199,19 @@ function purge() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function 7zipp() {
|
function 7zipp() {
|
||||||
if [ $1 = "l" ]
|
case $1 in
|
||||||
then
|
"l" | "x")
|
||||||
command 7z $@
|
command 7z $@
|
||||||
else
|
;;
|
||||||
|
|
||||||
|
"a")
|
||||||
read -p "Kompressionsstufe " KOMP
|
read -p "Kompressionsstufe " KOMP
|
||||||
command 7z -mhe=on -p -mx=$KOMP $@
|
command 7z -mhe=on -p -mx=$KOMP $@
|
||||||
fi
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
command 7z $@
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user