Skip to content

Instantly share code, notes, and snippets.

View bastilian's full-sized avatar
🐢
my pet turtle, Rufus.

Sebastian Gräßl bastilian

🐢
my pet turtle, Rufus.
View GitHub Profile
@bastilian
bastilian / gist:d8bf3fba6cdb5254ec33
Last active October 12, 2018 09:30
readme formats a markdown readme in the zsh
readme () {
mdless $(ls | grep -i readme)
}
# from http://blog.metamatt.com/blog/2013/01/09/previewing-markdown-files-from-the-terminal/
mdless () {
pandoc -s -f markdown -t man "$*" | groff -T utf8 -man | less;
}