Search Results

Search: Posts Made By: itkamaraj
1,250
Posted By itkamaraj
awk '{if(!a[$1 $2 $3 $4...
awk '{if(!a[$1 $2 $3 $4 $5]++){print}else{$1=$2=$3=$4=$5=$6=$7=$8="";print}}' filename
4,274
Posted By itkamaraj
you need to edit your /etc/services file. ...
you need to edit your /etc/services file. comment out the lines for the services that you don't want to run. a few that should be commented out:
rlogin
telnet (if you enabled ssh)
finger
ftp...
5,158
Posted By itkamaraj
Hi, why dont you try in for loop. with some sleep...
Hi, why dont you try in for loop. with some sleep time enabled. change the SOURCE_DIR and DESTINATION_DIR values according to your source and destination folder

#!/bin/bash...
87,962
Posted By itkamaraj
Another solution in awk. Just empty the first...
Another solution in awk. Just empty the first field and print the line

awk '{$1=""}1' input.txt
3,482
Posted By itkamaraj
Not tested.. this script will check the...
Not tested..

this script will check the directory size is in GB and if its more than 50GB then it get the corresponding userid in for loop. implement your notification method in for loop
...
5,539
Posted By itkamaraj
why dont you just change Mr. to Mr# using sed...
why dont you just change Mr. to Mr# using sed command then pass the file to awk command. later.. change Mr# to Mr.

can you give the sample input file and expected output file

sed 's/Mr\./Mr#/g'...
1,567
Posted By itkamaraj
$ awk -F\| '$1~/^[0-9]/{printf("\n%s...
$ awk -F\| '$1~/^[0-9]/{printf("\n%s ",$0);next}{printf("%s",$0)}END{print "\n"}' input.txt

113321|107|E|1|828|20|4032832|EL POETA|VILLALOBOS MIJARES PABLO NEPTALI RICARDO...
801
Posted By itkamaraj
If is not loop. Its conditional statement. I...
If is not loop. Its conditional statement.

I guess, APPEND is having string.

please try this

#!/bin/bash

echo -n "Enter the String : "
read APPEND
LENGTH=${#APPEND}
if [[ -z...
1,935
Posted By itkamaraj
paste file1 file2 $ awk...
paste file1 file2

$ awk 'NR==FNR{a[NR]=$0;next}{print a[FNR],$0}' file1 file2
1 text1
2 text2
3 text3
4 text4
1,141
Posted By itkamaraj
ha.. your script is big and not in readable...
ha.. your script is big and not in readable format.. sorry for that...

can you post sample input contents and the logic you are using and the expected output

how many files inside your <path> ?...
Forum: What is on Your Mind? 12-26-2016
2,445
Posted By itkamaraj
Congrats Rudic ;)
Congrats Rudic ;)
1,725
Posted By itkamaraj
awk '($0 ~ /ERROR/ && $0!~/IGNORE/){Q=$0;next}...
awk '($0 ~ /ERROR/ && $0!~/IGNORE/){Q=$0;next} ($0 ~ /ID/){print Q ORS "There is Error for ID " $NF}' test.txt
1,725
Posted By itkamaraj
change $1 to $0 awk '($1 ~...
change $1 to $0

awk '($1 ~ /ERROR/){Q=$0;next} ($0 ~ /ID/){print Q ORS "There is Error for ID " $NF}' Input_file
754
Posted By itkamaraj
its wildcard refer more details from this...
its wildcard

refer more details from this link (http://www.robelle.com/smugbook/wildcard.html)

? any single character, except a leading dot
* zero or more characters, except a leading dot
[...
1,725
Posted By itkamaraj
try with this.. awk '/ERROR/{err=$0}err &&...
try with this..

awk '/ERROR/{err=$0}err && /ID/{printf("%s\nThere is Error for %s : %s\n",err,$(NF-2),$NF);err="";}' input.txt
1,725
Posted By itkamaraj
awk '/ERROR/{err=$0}err && /ID/{printf("%s\nThere...
awk '/ERROR/{err=$0}err && /ID/{printf("%s\nThere is Error for %s\n",err,$0);err="";}' input.txt
4,545
Posted By itkamaraj
try this... awk...
try this...

awk 'NF<2{$0="NAME;"$0"\tfailed"}1' incomplete_case_list
aname val
NAME;r'(1,) 3.28584
NAME;r'(2,) failed
NAME;r'(3,) 6.13003
NAME;r'(4,) 4.18037
NAME;r'(5,) ...
738
Posted By itkamaraj
perl -lane 'print ($F[1]+$F[2])*$F[3]' inputfile
perl -lane 'print ($F[1]+$F[2])*$F[3]' inputfile
1,155
Posted By itkamaraj
how about this ? same code of @Rudic.. but...
how about this ?

same code of @Rudic.. but just adding exit to read only the first line on all files

for file in *.txt; do awk -F'|' '$1=="\"HD\"" {gsub(/"/,"",$3); print FILENAME, $3;exit}'...
3,729
Posted By itkamaraj
try this... awk -F,...
try this...

awk -F, '{split($2,Arr,".")}length(Arr[2])>2' test
6,267
Posted By itkamaraj
array length can be retrieved as ${#array[@]} ...
array length can be retrieved as ${#array[@]}

for (( index=${#array[@]}-1 ; index>=0 ; index-- )) ; do
echo "${array[index]}"
done
3,213
Posted By itkamaraj
$ cat test.txt 'ABC ' 'CDE ' 'FGHIJKL ' ...
$ cat test.txt
'ABC '
'CDE '
'FGHIJKL '
'MN '
'TEST HELLO '
' HI TEST TXT '


$ sed "s, *'$,',g" test.txt
'ABC'
'CDE'
'FGHIJKL'
'MN'
'TEST HELLO'
' HI TEST TXT'
7,496
Posted By itkamaraj
Gnu grep has -C option. bash-3.2$ cat t.txt...
Gnu grep has -C option.

bash-3.2$ cat t.txt
Service name: Bot_Serv1
Service is disabled
Preferred instances: botqa2,botqa3

Service name: Bot_Serv2
Service is enabled
Preferred instances:...
1,273
Posted By itkamaraj
try this ps -ef | awk...
try this

ps -ef | awk '/[c]hannel=5182/{for(i=1;i<=NF;i++)if($i~/supports/)print $i}'
3,837
Posted By itkamaraj
#!/bin/bash INPUT_FILE=input.txt awk...
#!/bin/bash

INPUT_FILE=input.txt

awk 'BEGIN{
E_Len=split("7,9,10,11,12,13",E_Arr,",");
}
{
if($3 == "E")
{
for(i=1;i<=E_Len;i++)
{
col_num=E_Arr[i];
sum+=$col_num;
}...
Showing results 1 to 25 of 500

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