.bashrc aktualisiert

This commit is contained in:
alf
2025-09-05 09:56:54 +00:00
parent 1720ac16a5
commit 29a86c4edf

16
.bashrc
View File

@ -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
} }