0

我现在一直在做几个项目。总是在我启动终端时,在 mac 中,我从根文件夹开始,这在大多数情况下都很好。但我想知道是否有可能制作一个将您立即重定向到地图的文件。比如说我必须输入:

cd 桌面/justamap/justanothermap/andamap/等。

是否可以在根文件夹中创建一个命令文件,其中包含指定地图的完整地址,这将带我到选定的地图,例如运行它?

这可以为我在处理项目之间有时间的项目时节省大量时间。

如果我重新发布一个问题,我真的很抱歉,但我找不到我的关键字的东西。

提前谢谢,感谢您的帮助!

问候,

基普特斯克里迪

4

2 回答 2

2

您可以创建一个简单的sh 文件(例如 ./anything_here)并运行它:

#!/bin/sh
cd Desktop/justamap/justanothermap/andamap/etc

$ chmod +x ./anything_here
$ ./anything_here

您还可以创建指向该文件夹的符号链接,然后cd进入符号链接(这就像文件夹实际上是./anything_here 一样):

$ ln -s ./anything_here Desktop/justamap/justanothermap/andamap/etc
$ cd ./anything_here

或者您可以创建一个alias,并将其写入控制台,将其放在您的 ~/.bashrc 或 ~/.bash_profile 文件中:

alias anything_here="cd Desktop/justamap/justanothermap/andamap/etc"

$ anything_here
于 2013-02-15T06:08:57.690 回答
1

尝试使用

vi ~/.bash_profile

它将在 vim 中打开你可以使用 mate 或其他任何东西

 alias project='cd Desktop/justamap/justanothermap/andamap/etc.'

关闭您的终端并重新启动它。宾果游戏应该适合你。

工作对我来说很棒:)

于 2013-02-15T06:08:57.067 回答