Posts by Ordoviz
Yes, it's a sloppy practice often joked upon but the security concerns are overblown: Piping unknown code into bash feels scary (and it should), but running make can be just as dangerous. Some inst...
Answer
#!/bin/sh export LC_ALL=C # to make sorting not depend on locale # Ignore some well-known directories with many files find_args=' -path /usr/lib/modules -o -path /etc/ssl/certs -o -path ...
Answer
If you need this in a portable POSIX-compliant script, you should not use which but this instead: command -v find
Answer