Does sed -i work on AIX?
sed -i
If not, how can I edit a file \"in place\" on AIX?
you can use perl to do it :
perl -p -i.bak -e 's/old/new/g' test.txt
is going to create a .bak file.