I am building a log file and sending it as mutt in html format.
I am using copy command in verbose mode to output to HTML file format.
cp -v files name
output inside html file
'filename' -> 'filename'
I believe the '
is causing my html file to be corrupted.
I am using following command,
cp -v -R ${UNIX_PACKAGES_DIR}/Unix/* ${TARGET_DIR} | tee -a {EXEC_LOG_DIR}/${LOG_FILE_NAME}
How can I fix this?