#CallForSpeakers pitch for #LandingFestival Berlin 2018 (March 14, 15)
Vote for this talk to be selected by giving a star ★ this gist.
More info on the Festival at: landingfestival.com/berlin
| #!/bin/bash | |
| if [ "$#" -ne 1 ] ; then | |
| echo "Usage: $0 <title>" >&2 | |
| exit 1 | |
| fi | |
| title=`echo "$1" |sed 's/ /-/g'` | |
| fileName="_posts/`date +%Y-%m-%d-$title.markdown`" |