Here’s an unbreakable way of using the find command across various Unix/Linux platforms:
find . -type f -exec ls -l ‘{}’ ‘;’
Notice the single quotes.
Here’s an unbreakable way of using the find command across various Unix/Linux platforms:
find . -type f -exec ls -l ‘{}’ ‘;’
Notice the single quotes.