Results 1 to 2 of 2
Hello
Im doing a scripting project for school and has run into a problem.
I want to search for the occurrence of "[" in a field. And then i want ...
- 01-30-2011 #1Just Joined!
- Join Date
- Oct 2009
- Posts
- 5
Help with awk
Hello
Im doing a scripting project for school and has run into a problem.
I want to search for the occurrence of "[" in a field. And then i want to delete that and everything after that (in that field)
Any tips of howto do it?
- 01-31-2011 #2
You can try
sed -i 's/\[//g' filename


Reply With Quote