Dec/09
23
remove the first N characters from each line of output (bash)
No comments · Posted by admin in one-liners
If you want to remove the first, let’s say, 27 characters from each line of output, you would:
$ some command|sed 's/^.\{27\}//'
bash · regular expressions · sed · shell

