Search Results

Search: Posts Made By: grepFruit
1,573
Posted By grepFruit
respect
respect
2
sed
3,662
Posted By grepFruit
$ cat x This is a PAN PAN This is a PAN This is...
$ cat x
This is a PAN PAN This is a PAN This is a PAN
This is a PAN PAN This is a PAN This is a PAN
This is a PAN PAN This is a PAN This is a PAN
$ sed 's/PAN/TAN/g' x > y
$ cat y
This is a TAN...
7,982
Posted By grepFruit
one more solution $cat x.ksh ...
one more solution


$cat x.ksh
#!/bin/ksh
maxlength=$(awk ' length > max { max=length} END{ print max}' $1)
sdiff -l -w $maxlength $1 $2 | sed 's/\|/\
<*changed*>/'
$



$ ksh x.ksh...
7,982
Posted By grepFruit
how will that look? Small example please
how will that look? Small example please
35,356
Posted By grepFruit
Hi, not all systems have this, but if you...
Hi,

not all systems have this, but if you are lucky:


#!/bin/bash

PNAME=$(readlink -f $0)
7,982
Posted By grepFruit
$ comm -13 file1 file2 > file3 $ cat file3 ...
$ comm -13 file1 file2 > file3
$ cat file3
Access Grant Blocks Reserved,CELL,1A,,,,AGBLK,0,0,1,CELL,1A,,,,ERICSSON,GSM,07B
Access Grant Blocks...
7,982
Posted By grepFruit
Hi, The diff utility will compare the ...
Hi,

The diff utility will compare the contents of file1 and file2 and write to standard output a list of changes necessary to convert file1 into file2:

$ diff file1 file2
5,6c5,6
<...
8,205
Posted By grepFruit
Hi, I have a question. My post was not...
Hi,

I have a question. My post was not published, I have no idea why. But, it is a good.:)
The command "comm" is not suitable for this? If not, why?

Greeting
4,654
Posted By grepFruit
Oh, sorry sorry. :o
Oh, sorry sorry. :o
4,654
Posted By grepFruit
Hi, sorry, but you must use the command a...
Hi,

sorry, but you must use the command a (append). :D

Greeting
Showing results 1 to 10 of 10

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