With sed, what is a one liner to print the first n characters. I am doing the following.
grep -G 'defn -test.*' OctaneFullTest.clj | sed ....
|
|
|
|
|
|
|
Don't use sed, use cut.
If you MUST use sed:
|
||
|
|
|
|
For more complex processing, I recommend writing a quick awk script. It's a handy skill to have from time to time. Sorry no code right now. But that is easy in awk. |
||
|
|
|
|
Strictly with sed:
|
||
|
|