> 2. Building on your use of 'cat' above you will find that 'cut' is your > friend: > > $ cat ~/.mozilla/firefox/profilies.ini|grep Path|cut -f 2 -d = Or you can remove the use of an unnecessery cat with "grep Path ~/.mozilla/firefor/profiles.ini | cut -f2 -d=" /Erik