Add searchhtml function and createLetter function

master
Jonathan Hodgson 7 years ago
parent d3a2fb983b
commit f62442f951
  1. 18
      config/oh-my-zsh/functions.zsh

@ -23,6 +23,21 @@ function cdlc() {
}
alias cd="cdlc"
function createLetter(){
if [ "$1" ]; then
if [ "$2" ]; then
newFile="$2"
else
newFile="$1"
newFile="${newFile%.*}.pdf"
fi
pandoc --template template-letter.tex $1 -o $newFile
else
echo "Oops. You need to suply a file"
return 1
fi
}
#Takes you to the aquarius theme
function aquarius() {
public_html=${PWD%/public_html*}/public_html
@ -102,3 +117,6 @@ searchcss() {
searchphp() {
grep -r -i -n --color="always" --include=\*.{php,phtml} "$1" .
}
searchhtml() {
grep -r -i -n --color="always" --include=\*.{html,htm} "$1" .
}

Loading…
Cancel
Save