Search Results

Search: Posts Made By: sathyaonnuix
5,380
Posted By sathyaonnuix
Let me try to help you. Step 1: Use try it...
Let me try to help you.

Step 1:
Use try it yourself editor (http://www.w3schools.com/html/tryit.asp?filename=tryhtml_intro)
Write your html code and see whether you receive the desired output
...
1,350
Posted By sathyaonnuix
# cat file A 0B 1828 C 100D 1666,C 200D...
# cat file
A 0B 1828
C 100D 1666,C 200D 1727,C 300D 1783,
A 0B 1786
C 200D 1727,C 100D 1666,C 300D 1783,
C 400D 1812,C 600D 1869,C 500D 1841,
C 400D 1812,C 500D 1841,C 600D...
2,050
Posted By sathyaonnuix
# min=$(date +%M); currtime=$(($(date +%k)*60 +...
# min=$(date +%M); currtime=$(($(date +%k)*60 + ${min#0*} )); find . -mmin -$((currtime + (24 * 60))) -a -mmin +$((${currtime} +
1)) | xargs ls -lrt
3,659
Posted By sathyaonnuix
you can try this: sendmail -t <<EOF ...
you can try this:

sendmail -t <<EOF
Content-type: text/html
TO: $mailaddress
CC: $mailccaddress
FROM: kashyap@xxx.com
SUBJECT: My html email
IMPORTANCE: High
$(sed 's/--*[$-]/\n/g' file |...
1,681
Posted By sathyaonnuix
This page will be handy for SSH Keys generation...
This page will be handy for SSH Keys generation and copying it to the remote servers

3 Steps to Perform SSH Login Without Password Using ssh-keygen & ssh-copy-id
1,425
Posted By sathyaonnuix
thats equivalent to print $0, means prints all...
thats equivalent to print $0, means prints all the contents.

# awk 'BEGIN{FS=OFS=","}
$1 !~ /^0/{$1="0"$1}
$2 !~ /^0/{$2="1234"$2} {print $0}' file
...
3,659
Posted By sathyaonnuix
You can try this, but they may be more easier way...
You can try this, but they may be more easier way than mine :)

sed 's/--*[$-]/\n/g' file | awk -F'|' 'BEGIN{print "<html>\n<table border="3" cellspacing="1" cellpadding="2">"} {print...
7,060
Posted By sathyaonnuix
PS: Look the below code as written by an awk noob...
PS: Look the below code as written by an awk noob ;)

sort -k 1,2 file | awk '{print $1,$2}' | uniq -d > temp #Identifies the reduntant values and stores it in a temp file

while read i
do...
849
Posted By sathyaonnuix
Use it as $i rather using it as i inside the...
Use it as $i rather using it as i inside the while loop.

change your index(i).html with index$i.html

PS: Other than the increment space
1,452
Posted By sathyaonnuix
This is how you have to do # awk '{print...
This is how you have to do
# awk '{print NR","$0}' file
1,A1,2012-12-16 15:59:59.995,id2_3,ab=,phoneX1-01,BL,,,,,,,,,,,,,,,
2,A1,2012-12-16 15:59:59.995,id2_3,ab,phone300,BL,,,,,,,,,,,,,,,...
1,823
Posted By sathyaonnuix
Can you confirm the key is added into...
Can you confirm the key is added into ~/.ssh/authorized_keys of the remote server.
901
Posted By sathyaonnuix
Have you tried sort -u
Have you tried sort -u
1,767
Posted By sathyaonnuix
Try this: cat file | awk '{ sum+=$1} END {print...
Try this:
cat file | awk '{ sum+=$1} END {print sum}'
Showing results 1 to 13 of 13

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