Forum Moderators: bakedjake
need to extract only those with 5 letters or less...is it possible using some linux command?
i tried grep but it doesnt work.
thanks sam
amazon people love #*$! purple
. . .
sed 's/^.\{6,\}$//' < filename.txt
grep -v '......' file.txt
will remove any lines that have at least 6 characters.