中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 操作系统 > Linux > Linux综合
Unix操作系统下快速切换目录的shell
作者:myq12  时间:2006-10-25 13:32 出处:chinaunix  责编:月夜寒箫
              摘要:Unix操作系统下快速切换目录的shell

如果你的目录层次很深的话,这个shell会很方便的直接切换到目的目录,例如
当前目录/usr/home,而目录desdir在/usr/home/app/local/opp/william/desdir
直接打入

  $ cd desdir,便可直接从当前目录/use/home切换到/usr/home/app/local/opp/william/desdir
配置一下.profile,加入两行
  . ./bin/chdir
  alias cd='chdir'
  file:chdir

  # auto find your directory
  # Writer: william 2006 beijing
  # add the following two line in $HOME/.profile
  # . ./bin/chdir
  # alias cd='chdir'

chdir()
{
if [ -z "$1" ] ; then
        cd
        PS1="[$PWD]"
        export PS1;
        return
elif [ "$1" = - ] ; then
        cd -
        PS1="[$PWD]"
        export PS1;
        return
else
        if [ -d "./$1" ] ; then
        cd ./$1
        PS1="[$PWD]"
        export PS1;
        return
        fi
fi

 

for LINE in `find $HOME -type d -print | grep -c \/$1$`
do
if [ $LINE -eq 0 ] ; then
        echo "your directory $1 is not exsit($LINE)!"
        return
fi
done

for Dir in `find $HOME -type d -print | grep \/$1$`
do
    if [ $LINE -gt 1 ] ; then
        if [ ! -d "$Dir" ] ; then
        echo "$Dir is not a directory"
        return
        fi

        printf "$Dir\t\t...do you want to go? default(y)"
        read YESNO
#       echo "(y/n)="$YESNO

        if [ -z "$YESNO" ] ; then
                YESNO=y
        fi

        case "$YESNO" in
                [yY]|[yY][eE][sS])
                        YESNO=y ;;
                [nN]|[nN][oO])
                        YESNO=n ;;
                *)
                        YESNO="" ;;
        esac

        if [ "$YESNO" = y ] ; then
                cd $Dir
                PS1="[$PWD]"
                export PS1;

                return
        else
                continue
        fi
  else
                cd $Dir
                PS1="[$PWD]"
                export PS1;
                return
  fi
done
}

关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有