Leonardo Benitez's Portfolio

Welcome to my portfolio! I am currently working on developing this website. Please let me know if you experience any connection issues. You can reach me at leo@[this domain]

Some random shell functions I made:

#Command help from cheat.sh. Takes the mysterious command as a string.
cheat() {
 if [[ -n $* ]]; then
  curl cheat.sh/$*
 else
  curl cheat.sh
 fi
}

#Add, commit, and push. Requires commit message as a string. Be careful with this one!
gall(){
 if [[ -n $* ]]; then
  git add *; git commit -m $*; git push
 else
  print "Please use a commit message!"
 fi
}