Can anyone provide Solaris equal command to the following command
$ find . -type f -printf '%f,%h\n'
After running the code I am getting "bad option printf find: [-H | -L] path-list predicate list error "
Printf is not supported by Solaris UNIX environment
Please refer to following links for more information:
http://explainshell.com/explain?cmd=find+sample+-type+f+-printf+%27%25f%2C%25h%5Cn%27
Thanks in advance
man find
. – John Aug 30 '16 at 19:04gfind
command. – Mark Plotnick Aug 30 '16 at 19:09man find
. If you have man pages installed, it will let you read how to use thefind
command. – John Aug 30 '16 at 19:11