diff --git a/goto b/goto index 38ea43c..a8f32cf 100755 --- a/goto +++ b/goto @@ -17,8 +17,7 @@ if [[ $# -eq 0 || $# -gt 1 ]]; then # Display help. elif [[ $1 == "-h" || $1 == "--help" ]]; then - echo "\nImproper usage. Try:" - echo "\ngoto [keyword]" + echo "goto [keyword]" echo " goto downloads" echo " goto school" echo " goto portfolio" diff --git a/update b/update deleted file mode 100755 index 0cb382a..0000000 --- a/update +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/zsh - -firefox https://archlinux.org; - -read "?Ok to update (y/n, default y): " OK - -if [[ $OK == "y" || $OK == "" ]]; then - echo "starting update..." - sudo pacman -Syu; - echo "finishing update..." -else - echo "abandoning update." -fi