]> id.pley.net Git - dotfiles.git/blobdiff - zsh_aliases
Update zsh aliases and settings
[dotfiles.git] / zsh_aliases
index f3307028ed3a578bb76c49721eca2be786108916..05e1a1054364154bdaf3917e109357fe1efcb473 100644 (file)
@@ -22,6 +22,7 @@ alias p='ps -au'
 alias tf='tail -25f'
 alias l='ls -lF'
 alias la='ls -laF'
+alias less='less -R'
 alias clr='clear'
 alias cls='clear'
 alias d='date'
@@ -67,10 +68,23 @@ if [[ $( has pidof ) == 'no'  ]]; then
 fi
 
 function ssh-forget() {
-    sed -i "" "/^$1,/d" ~/.ssh/known_hosts
+    sed -i "" "/^$1[, ]/d" ~/.ssh/known_hosts
 }
 
 function ssh-learn() {
-    sed -i "" "/^$1,/d" ~/.ssh/known_hosts
+    sed -i "" "/^$1[, ]/d" ~/.ssh/known_hosts
     ssh-keyscan -t rsa $1 >> ~/.ssh/known_hosts
 }
+
+function canonicalize() {
+    local relpath=$( dirname $1 )
+    if [[ ! -d "$relpath" ]]; then
+        echo "$0: no such file or directory: $1"
+        return 1
+    fi
+
+    echo $(cd $relpath; pwd -P)/$(basename $1)
+    return 0
+}
+
+function sayStatus () { local _status=$?; if [[ $_status -eq 0 ]]; then say "Success"; else say "Failed"; fi; return $_status }