rmmonster · @rmmonster
9 followers · 935 posts · Server social.tchncs.de

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

Last updated 1 year ago