Search Results

Search: Posts Made By: venkitesh
676
Posted By RudiC
Do you need the [groups] line in your output? ...
Do you need the [groups] line in your output?

Try (untested)
awk '
!LOCK &&
NF > 1 {$NF = $NF ",raspberry"
}
/[TEST:\/]/ {LOCK = 1
}
1' file
676
Posted By RudiC
Try (untested): awk 'NF > 1 {$NF = $NF...
Try (untested):
awk 'NF > 1 {$NF = $NF ",raspberry"} 1' file
6,981
Posted By RavinderSingh13
Hello venkitesh, Could you please try...
Hello venkitesh,

Could you please try following and let me know if this helps you.

awk 'FNR==NR{A[$1,$NF]=$0;next} (($1,$NF) in A){print} !(($1,$NF) in A){print "\033[31m"$0"\033[0m";}'...
6,981
Posted By Chubler_XL
Color code needs to be added to your generated...
Color code needs to be added to your generated HTML as outlook doesn't support ANSI escape sequences try:

awk '
BEGIN {
print "From:test@test.com"
print "To:test@test.com"
print "Subject:...
1,587
Posted By RudiC
Check this...
Check this (https://www.unix.com/unix-for-dummies-questions-and-answers/23378-sending-mail-html-content.html) and other links found when searching these fora.
1,787
Posted By RavinderSingh13
Hello venkitesh, Welcome to forums, could...
Hello venkitesh,

Welcome to forums, could you please try following and let me know if this helps.

awk '{TOT=$2+0;gsub(/[[:digit:]]|\./,X,$2);USED=$3+0;gsub(/[[:digit:]]|\./,X,$3);if(($2 ~ /GB/...
Showing results 1 to 6 of 6

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