瀏覽代碼

minor shell script cleanup

pull/252/head
William Ting 10 年之前
父節點
當前提交
c0301c7cee
共有 2 個文件被更改,包括 34 次插入17 次删除
  1. +19
    -9
      bin/autojump.bash
  2. +15
    -8
      bin/autojump.zsh

+ 19
- 9
bin/autojump.bash 查看文件

@ -47,6 +47,7 @@ case $PROMPT_COMMAND in
;;
esac
# default autojump command
j() {
if [[ ${@} =~ ^-{1,2}.* ]]; then
autojump ${@}
@ -64,37 +65,46 @@ j() {
fi
}
# jump to child directory (subdirectory of current path)
jc() {
if [[ ${@} == -* ]]; then
autojump ${@}
else
j $(pwd)/ ${@}
j $(pwd) ${@}
fi
}
# open autojump results in file browser
jo() {
if [ -z $(autojump $@) ]; then
echo "autojump: directory '${@}' not found"
echo "Try \`autojump --help\` for more information."
false
else
if [[ ${@} == -* ]]; then
autojump ${@}
return
fi
new_path="$(autojump ${@})"
if [ -d "${new_path}" ]; then
case ${OSTYPE} in
linux-gnu)
xdg-open "$(autojump $@)"
xdg-open "${new_path}"
;;
darwin*)
open "$(autojump $@)"
open "${new_path}"
;;
cygwin)
cygstart "" $(cygpath -w -a $(pwd))
cygstart "" $(cygpath -w -a ${new_path})
;;
*)
echo "Unknown operating system." 1>&2
;;
esac
else
echo "autojump: directory '${@}' not found"
echo "Try \`autojump --help\` for more information."
false
fi
}
# open autojump results (child directory) in file browser
jco() {
if [[ ${@} == -* ]]; then
autojump ${@}

+ 15
- 8
bin/autojump.zsh 查看文件

@ -40,7 +40,7 @@ jc() {
if [[ ${@} == -* ]]; then
autojump ${@}
else
j $(pwd)/ ${@}
j $(pwd) ${@}
fi
}
@ -48,21 +48,29 @@ jc() {
jo() {
if [[ ${@} == -* ]]; then
autojump ${@}
else
return
fi
local new_path="$(autojump ${@})"
if [ -d "${new_path}" ]; then
case ${OSTYPE} in
linux-gnu)
xdg-open "$(autojump $@)"
xdg-open "${new_path}"
;;
darwin*)
open "$(autojump $@)"
open "${new_path}"
;;
cygwin)
cygstart "" $(cygpath -w -a $(pwd))
cygstart "" $(cygpath -w -a ${new_path})
;;
*)
echo "Unknown operating system." 1>&2
;;
esac
else
echo "autojump: directory '${@}' not found"
echo "Try \`autojump --help\` for more information."
false
fi
}
@ -70,8 +78,7 @@ jo() {
jco() {
if [[ ${@} == -* ]]; then
autojump ${@}
return
else
jo $(pwd) ${@}
fi
jo $(pwd)/ ${@}
}

Loading…
取消
儲存