1

在 Windows 上,我想为我的工作目录创建一个别名,以便我可以快速 cd 进入它。我试过这个命令

%alias $UWHPSC echo 'c:/Users/xxxx/Documents/uwhpsc'
cd $UWHPSC

这给出了以下错误

[Error 2] The system cannot find the file specified: u'$UWHPSC'
c:\Users\xxxx\Documents\uwhpsc
4

2 回答 2

3

%cd有一个书签的概念,它在 IPython 会话中持续存在:

%bookmark UWHPSC c:/Users/xxxx/Documents/uwhpsc
%cd UWHPSC

%bookmark?有关更多信息,请参阅的输出。

于 2013-05-08T19:45:12.990 回答
0

只需定义一个普通的 Python 变量,然后在 cd 命令中将其与 $ 一起使用:

UWHPSC = 'c:/Users/xxxx/Documents/uwhpsc'
cd $UWHPSC
于 2013-05-08T11:55:18.613 回答