Search Results

Search: Posts Made By: Nakul_sh
83,443
Posted By hergp
The result depends on how the receiving mail...
The result depends on how the receiving mail program displays a text only mail, some use a fixed width font, others a variable width font.

The solution for this issue is described here....
83,443
Posted By drl
Hi. See also post #14 in thread...
Hi.

See also post #14 in thread https://www.unix.com/shell-programming-scripting/245404-color-encoding-disk-space-script.html for a perl solution to create tables from text to formats in ASCII,...
83,443
Posted By SriniShoo
you can use the below code to convert your data...
you can use the below code to convert your data into HTML table
awk 'BEGIN {print "<table>"}
{print "<tr>"; for(i = 1; i <= NF; i++) print "<td>" $i "</td>"; print "</tr>"}
END {print...
5,154
Posted By vidyadhar85
You can use below mv...
You can use below


mv usr/sbin/appl/tmp/logfile.txt usr/sbin/appl/tmp/logfile_`date +"%d%b%y"`.txt
find usr/sbin/appl/tmp/logfile*.txt -mtime +21 -exec rm {} \ ;
2,613
Posted By Chubler_XL
This might get you started - this version ignores...
This might get you started - this version ignores any output from check_Network and only restarts if check_Network times out.

You could redirect the output of check_Network to a file and process...
1,915
Posted By in2nix4life
cat file Jhon Status: Form successfully...
cat file

Jhon
Status: Form successfully submitted
Maria
Status:Form successfully submitted
Shyne
Status: Form submission pending.
Liken
Status:Form successfully submitted
David...
2,104
Posted By Yoda
Try this instead: bdf | awk 'NR>1 && /%/{ print...
Try this instead:
bdf | awk 'NR>1 && /%/{ print $(NF-1) }'
1,409
Posted By vidyadhar85
Try you to put the absolute path of the commands...
Try you to put the absolute path of the commands in the script it will work in cron.
Showing results 1 to 8 of 8

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