Search Results

Search: Posts Made By: navsan
2,705
Posted By rdcwayx
ssh hostname "path ksh...
ssh hostname "path ksh HC_Report.ksh>out.html"
3,024
Posted By Yoda
Before appending text file to html file make sure...
Before appending text file to html file make sure you close the table tag:-
{
echo "</td></tr></table>"
echo "<p>failed:</p>"
echo "<p>"
cat HC_Report.txt
echo "</p>"
} >> color.html
...
7,032
Posted By elixir_sinari
Replace if [ ! -s "TCM_HC_ERR_Report.txt" ] ...
Replace
if [ ! -s "TCM_HC_ERR_Report.txt" ]
then
cat TCM_HC_ERR_Report.txt
else
echo "Empty or not exist"
fi
with
if [ -s TCM_HC_ERR_Report.txt ]
then
cat...
7,032
Posted By itkamaraj
Also, give the absolute path (from the root) for...
Also, give the absolute path (from the root) for the file.
Showing results 1 to 4 of 4

 
All times are GMT -4. The time now is 03:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy