tree -fi --noreport /u01/abc/def >/u01/abc/physicalfiles.txt
-finds the files in the directory and dumps the path of each file as a line in the file physicalfiles.txt.
find /u01/abc/def -type f | sort -o "/u01/abc/physicalfiles.txt"
Machine Learning, Data Science, Data Structure, and Algorithmic Problems and their Solutions
Using mail or mutt utilities we can send HTML emails from Unix console or bash scripts.
Following scriptlet sends a HTML content from mytest.html file:
mutt -e "my_hdr Content-Type: text/html" test@yahoo.com -s "subject" < mytest.html
Thanks.