linux ignore permission denied code example
Example: how to silence operation not permitted
Just add "2>/dev/null" at the end of your command pipe as for example:
find . -name log 2>/dev/null
Just add "2>/dev/null" at the end of your command pipe as for example:
find . -name log 2>/dev/null