Useful shite I should've known earlier (WIP)

· acidbong's blog

Coreutils mostly, but not only
#linux
1# last 3 symbols
2sed 's/...$//'  # the number of dots corresponds to the number of symbols
3                # you wanna cut out
4# initial 3 symbols
5sed 's/^...//'
1sed -n '/Key/,$p'
1git branch new
2git cherry-pick oldest^..newest