Using sed what is an one liner to print the first n characters? I am doing the following:
sed
grep -G \'defn -test.*\' OctaneFullTest.clj
Strictly with sed:
grep ... | sed -e 's/^\(.\{N\}\).*$/\1/'