If tbf0_ is always lower case and space the field delimiter, you can try the following :
run the following command :
prog.sh filename | sort -u
where prog.sh is the following :
#!/usr/bin/sh
for i in `cat $1`
do
echo $i | awk '$1 ~ /^tbf0_/ {print $1}'
done
and filename is your file.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.