parent
5341a925c1
commit
7d68839e9e
@ -33,6 +33,11 @@ warninvalid() {
|
|||||||
error=$(( error+1 ))
|
error=$(( error+1 ))
|
||||||
} >&2
|
} >&2
|
||||||
|
|
||||||
|
invalid_option() {
|
||||||
|
printf "tmpfiles: invalid option '%s'\n" "$1" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
dryrun_or_real() {
|
dryrun_or_real() {
|
||||||
local dryrun=
|
local dryrun=
|
||||||
[ $DRYRUN -eq 1 ] && dryrun=echo
|
[ $DRYRUN -eq 1 ] && dryrun=echo
|
||||||
@ -299,6 +304,7 @@ while [ $# -gt 0 ]; do
|
|||||||
--dryrun|--dry-run) DRYRUN=1 ;;
|
--dryrun|--dry-run) DRYRUN=1 ;;
|
||||||
--exclude-prefix=*) EXCLUDE="${EXCLUDE}${1##--exclude-prefix=} " ;;
|
--exclude-prefix=*) EXCLUDE="${EXCLUDE}${1##--exclude-prefix=} " ;;
|
||||||
--prefix=*) PREFIX="${PREFIX}${1##--prefix=} " ;;
|
--prefix=*) PREFIX="${PREFIX}${1##--prefix=} " ;;
|
||||||
|
-*) invalid_option "$1" ;;
|
||||||
esac
|
esac
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user