How to only get file name with Linux 'find'? - Stack Overflow
https://stackoverflow.com/questions/5456120/how-to-only-get-file-name-with-linux-find
Mar 28, 2011 · As others have pointed out, you can combine find and basename, but by default the basename program will only operate on one path at a time, so the executable will have to be launched once for each path (using either find ... -exec or find ... | xargs -n 1), which may potentially be slow.. If you use the -a option on basename, then it can accept multiple …
DA: 7 PA: 70 MOZ Rank: 43