ls -R gives the names of all files (except hidden files ) in a directory recursively
ls -R | grep - i *.htm* will give me a list of all the html files in the directory. BUT i need the pathname of these filenames since their foldernames are also important to convert these files to pdf. Instead of writing a complicated shell script, is there any program which can give the complete PATH and filename for such files in a directory RECURSIVELY.
Once this list of COMPLETE filenames is known it would be easy to use a CLI program to convert the file to pdf in a shell script.
Thanks to all who answered my earlier query on html to pdf conversion.
Regards Kussh