You also don't want this
> for some in /some/path/*.pr0n; do do-the-thing "$some"; done
You almost always want
> declare -a some_array
> readarray -t some_array < <(find /some/path -type [...])
> for some in "${some_array[@]}"; do
> do-the-thing "$some"
> done
#thisisthetruth #bash #linux #shell #suckless