Hi,
I have a property files that contains things like:
myhome=/home/username
lib=/home/libs
and I want to, for instance, get the home path (i.e. /home/username):
If I use cat + grep like
cat property | grep myhome
then I get: myhome=/home/username
so I could use sed to remove the 'home=', i.e. remove everything before (and including) the '='. How can I do that with sed ?
Cheers David