consider end-of-options for find

This commit is contained in:
Patrick Schleizer 2024-07-26 09:33:45 -04:00
parent 794f6a25fa
commit 6bbf176e3b
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -174,7 +174,7 @@ add_nosuid_statoverride_entry() {
while IFS="" read -r -d "" dummy_line; do
log info "Test would parse line: '${dummy_line}'"
should_be_counter=$((should_be_counter + 1))
done < <(find "${fso_to_process}" -perm /u=s,g=s -print0)
done < <(printf -- "${fso_to_process}" | find -files0-from - -perm /u=s,g=s -print0)
local line
while IFS="" read -r -d "" file_name; do
@ -328,7 +328,7 @@ add_nosuid_statoverride_entry() {
## /usr/lib will hit ARG_MAX if using bash 'shopt -s globstar' and '/usr/lib/**'.
## Using 'find' with '-perm /u=s,g=s' is faster and avoids ARG_MAX.
## https://forums.whonix.org/t/disable-suid-binaries/7706/17
done < <(find "${fso_to_process}" -perm /u=s,g=s -print0)
done < <(printf -- "${fso_to_process}" | find -files0-from - -perm /u=s,g=s -print0)
## Sanity test.
if test ! "${should_be_counter}" = "${counter_actual}"; then