Search Results

Search: Posts Made By: saw7
1,440
Posted By saw7
try this: sed -n...
try this:
sed -n '/<Profile_/s/.*ABCD="\(.*\)".*/\1/p' file

or maybe :

awk '/-/{printf("{%s}\n",$1)}' RS="[{}]" file
2,506
Posted By saw7
Scrutinizer ...
Scrutinizer (https://www.unix.com/members/302052697.html)
frans (https://www.unix.com/members/302070164.html)

http://blog.ning.com/files/Thank%20you%20note.jpg
2,506
Posted By saw7
thank's Scrutinizer ---------- Post updated...
thank's Scrutinizer

---------- Post updated at 04:17 AM ---------- Previous update was at 03:40 AM ----------



Scrutinizer, sorry, can you explain me:

/ *(<br\/>)+ */

---------- Post...
2,494
Posted By saw7
echo '3 october 2010' | awk '{print...
echo '3 october 2010' | awk '{print $1,tolower(substr($2,0,3)),$3}'
2,506
Posted By saw7
Parse data
hi

i have a file p1.htm

<div class="colorID2">

aaaa aaaa aa <br/>
bbbbbbbb bbb<br/>


<br/>cccc ccc ccc
</div><div class="colorID1">

dddd d ddddd<br/>

...
7,812
Posted By saw7
rdcwayx...
rdcwayx (https://www.unix.com/members/302014515.html) thank's
7,812
Posted By saw7
can you explain me your code thank's
can you explain me your code

thank's
1,661
Posted By saw7
zaxxon :b: methyl :b: Scrutinizer :b: ...
zaxxon :b:
methyl :b:
Scrutinizer :b:

thanks :b::b::b:
1,661
Posted By saw7
problem with sort
Hi all,

i want to sort by the (1-8) columns and (9-7) columns:

my file:

MARTINEZ---PAUL
--DUPOND---EDDY
--DURANDJACQUES
--DUPOND--ALAIN


output:

--DUPOND--ALAIN
--DUPOND---EDDY...
1,373
Posted By saw7
Hi maybe this: sed 's/|/\n|/g' file |...
Hi

maybe this:

sed 's/|/\n|/g' file | awk '/^|/{c++}END{print c-1}'
3,013
Posted By saw7
great :cool: ...
great :cool:

guruprasadpr,alister,agn,skles,Scrutinizer THANK'S

skles your code don't work :rolleyes:
Scrutinizer I did not understand your code :D
3,013
Posted By saw7
append line
hi :D

i have a file 1.txt:


XREAZM02145586k05mkkk
1azeKJLM000255
kopmjjgy
XREAZMNJK015522255521144bvfyj
XREAZM01255hhfe'yg000nnn36poigujj,jjd
nnjjjlm0025962/522i want:

...
31,455
Posted By saw7
awk '$0=$0" 1000"' file
awk '$0=$0" 1000"' file
1,898
Posted By saw7
sed -e '/^#/d' -e 's/.*|//' file
sed -e '/^#/d' -e 's/.*|//' file
1,765
Posted By saw7
scottn :b:
scottn :b:
1,765
Posted By saw7
Ty scottn works like a gem Can you explain...
Ty scottn works like a gem

Can you explain me your code
1,765
Posted By saw7
deplace field delimiter
hi

here my problem:

i have 2 file:

1.tmp

111
222
555

2.tmp

1*TEST1**111*LA
2*TEST2**112*LA
3*TEST3**222*LA
4*TEST4**333*LA
5*TEST5**555*LA
3,518
Posted By saw7
maybe.. n=1 for i in *.[jJ][pP][gG] do ...
maybe..
n=1
for i in *.[jJ][pP][gG]
do
mv "$i" myfile${n}.jpg
n=$((n+1))
done

or ..

n=1
ls *.[jJ][pP][gG] | while read i
do
mv "$i" myfile${n}.jpg
n=$((n+1))
done
Showing results 1 to 18 of 18

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