addet silent option

This commit is contained in:
pika 2025-05-12 15:47:32 +02:00
parent afa88a2146
commit 1c77bb58e3

View file

@ -100,6 +100,13 @@
}
if getImports; then
case "$@" in
--silent | -s)
silent=true
echo_warning "Executing script silently.."
;;
*) silent=false ;;
esac
main
fi
}