This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#md2pdf: small flavored markdown converter to pdf using pandoc | |
#by @angrykoala | |
if [ $# -eq 0 ] | |
then echo "Need at least one argument md2pdf [files]"; | |
else | |
for var in "$@" | |
do | |
filename=$(basename "$var") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Personal format options for astyle | |
#by @angrykoala | |
astyle --style=java --align-pointer=name --delete-empty-lines --indent-col1-comments --unpad-paren -n -Q $@ |
NewerOlder