免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6003 | 回复: 7
打印 上一主题 下一主题

请问让命令提示符处显示当前目录的命令是什么? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-06-16 11:46 |只看该作者 |倒序浏览
怎么出现和取消?谢谢

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2005-06-16 11:56 |只看该作者

请问让命令提示符处显示当前目录的命令是什么?

楼主到shell版找,看到过现成的例子
csh的,ksh的都有

论坛徽章:
0
3 [报告]
发表于 2005-06-16 13:15 |只看该作者

请问让命令提示符处显示当前目录的命令是什么?

用的系统是sco

论坛徽章:
0
4 [报告]
发表于 2005-06-16 14:44 |只看该作者

请问让命令提示符处显示当前目录的命令是什么?

还要看你用的是什么shell

论坛徽章:
0
5 [报告]
发表于 2005-06-16 16:50 |只看该作者

请问让命令提示符处显示当前目录的命令是什么?

b shell

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
6 [报告]
发表于 2005-06-16 18:45 |只看该作者

请问让命令提示符处显示当前目录的命令是什么?

ksh是这样的:

  1. $PWD
复制代码

论坛徽章:
0
7 [报告]
发表于 2005-06-17 00:45 |只看该作者

请问让命令提示符处显示当前目录的命令是什么?

C Shell (csh):
        Put this in your .cshrc - customize the prompt variable the
        way you want.

            alias setprompt 'set prompt="${cwd}% "'
            setprompt           # to set the initial prompt
            alias cd 'chdir \!* && setprompt'
        
        If you use pushd and popd, you'll also need

            alias pushd 'pushd \!* && setprompt'
            alias popd  'popd  \!* && setprompt'

        Some C shells don't keep a $cwd variable - you can use
        `pwd` instead.

        If you just want the last component of the current directory
        in your prompt ("mail% " instead of "/usr/spool/mail% "
        you can use

            alias setprompt 'set prompt="$cwd:t% "'
        
        Some older csh's get the meaning of && and || reversed.
        Try doing:

            false && echo bug

        If it prints "bug", you need to switch && and || (and get
        a better version of csh.)

      Bourne Shell (sh):

        If you have a newer version of the Bourne Shell (SVR2 or newer)
        you can use a shell function to make your own command, "xcd" say:

            xcd() { cd $* ; PS1="`pwd` $ "; }

        If you have an older Bourne shell, it's complicated but not
        impossible.  Here's one way.  Add this to your .profile file:

                LOGIN_SHELL=$$ export LOGIN_SHELL
                CMDFILE=/tmp/cd.$$ export CMDFILE
                # 16 is SIGURG, pick a signal that's not likely to be used
                PROMPTSIG=16 export PROMPTSIG
                trap '. $CMDFILE' $PROMPTSIG

        and then put this executable script (without the indentation!),
        let's call it "xcd", somewhere in your PATH

                : xcd directory - change directory and set prompt
                : by signalling the login shell to read a command file
                cat >${CMDFILE?"not set"} <<EOF
                cd $1
                PS1="\`pwd\`$ "
                EOF
                kill -${PROMPTSIG?"not set"} ${LOGIN_SHELL?"not set"}

        Now change directories with "xcd /some/dir".

      Korn Shell (ksh):

        Put this in your .profile file:
                PS1='$PWD $ '
        
        If you just want the last component of the directory, use
                PS1='${PWD##*/} $ '

      T C shell (tcsh)

        Tcsh is a popular enhanced version of csh with some extra
        builtin variables (and many other features):

            %~          the current directory, using ~ for $HOME
            %/          the full pathname of the current directory
            %c or %.    the trailing component of the current directory

        so you can do

            set prompt='%~ '

      BASH (FSF's "Bourne Again SHell"
        
        \w in $PS1 gives the full pathname of the current directory,
        with ~ expansion for $HOME;  \W gives the basename of
        the current directory.  So, in addition to the above sh and
        ksh solutions, you could use

            PS1='\w $ '
        or
            PS1='\W $ '

Quoted from
   - How do I get the current directory into my prompt ?
   - Unix - Frequently Asked Questions (2/7) [Frequent posting]
   - www.faqs.org

论坛徽章:
0
8 [报告]
发表于 2005-06-17 08:58 |只看该作者

请问让命令提示符处显示当前目录的命令是什么?

我现在用超级用户登陆后的提示符是这样的
[vmhost]/: #
.profile 内容这样的
SHELL=/bin/bash
HOME=/
PATH=/bin:/etc:/usr/bin:/tcb/bin:/usr/java2/bin; export PATH
JAVA_HOME=/usr/java2; export JAVA_HOME
用informix用户登陆时
[vmhost]/usr/informix: $
能具体说说提示符前面的内容是怎样添加出来的还有怎样取消吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP