git://105106.c2e0p.group
/
dotfiles.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
4fda9c1
)
Add canonicalize() function.
author
Jer Noble
<jer.noble@apple.com>
Wed, 25 Sep 2013 23:11:39 +0000
(16:11 -0700)
committer
Jer Noble
<jer.noble@apple.com>
Wed, 25 Sep 2013 23:15:28 +0000
(16:15 -0700)
zsh_aliases
patch
|
blob
|
history
diff --git
a/zsh_aliases
b/zsh_aliases
index f3307028ed3a578bb76c49721eca2be786108916..1728fa30dc36d3856a8acf9fae7633aa624b4a1b 100644
(file)
--- a/
zsh_aliases
+++ b/
zsh_aliases
@@
-74,3
+74,14
@@
function ssh-learn() {
sed -i "" "/^$1,/d" ~/.ssh/known_hosts
ssh-keyscan -t rsa $1 >> ~/.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
+}