Day 623
English
TODO Ankify: spelling of Colleague
German
schnipsel | Übersetzung Englisch-Deutsch - scrap/shred/snipped (noun). Mentioned by Caro in context of Schnitzeljagd – Wikipedia that is an interesting thing by itself.
git coloring
git --color=never
means that no color gets added by git, but any existing is preserved. Usually the program piping the output has to be told that colours are still needed despite the fact that it’s not outputting to a terminal.
bash pretty CSV viewer
Pretty CSV viewing on the Command Line - Stefaan Lippens inserts content here this is realy nice! In goes a CSV, out goes a pretty CSV. With all the tabs right etc. Piping output from daff diff
to this works wonders.
Added his function to .zshrc
:
function pretty_csv {
column -t -s, -n "$@" | less -F -S -X -K
}
Nel mezzo del deserto posso dire tutto quello che voglio.
comments powered by Disqus