Hi Jon,

> Using "sed -i'' 's/@plt//' x86-64.darwin.base.s" did not delete the "@plt"

Hmm, so let's give up inplace-editing with 'sed'.


We can use three commands instead: Move the '*.s' file to some temporary
file, and then 'sed' to remove the '@plt's:

   mv x86-64.darwin.base.s x86-64.darwin.base.tmp
   sed 's/@plt//' x86-64.darwin.base.tmp >x86-64.darwin.base.s
   rm x86-64.darwin.base.tmp

Tough life on a Mac ... I'm afraid the _real_ tough stuff is still to
come ;-)

Cheers,
- Alex
-- 
UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe

Reply via email to