如何缩短 Red Hat Linux 中的路径?
所以我有一堆文件用于在一个长路径的目录中进行测试,所以说有 10 个文件位于 /home/grammin/testFiles/program1/important/。
我想要什么要做的就是在我的 bashrc 中添加一些内容?也许就像 fileDir = /home/grammin/testFiles/program1/important/
然后每当我想在命令行上访问特定文件时,我所要做的就是输入类似 ls 文件目录/FILE1
。感谢您的帮助。
So I have a bunch of files that I use for testing in a directory with a long path so say there are 10 files located at /home/grammin/testFiles/program1/important/.
What I would like to do is have something in my bashrc? maybe that is like fileDir = /home/grammin/testFiles/program1/important/
and then whenever I would like to access a specific file on the command line all i have to do is type something like ls fileDir/FILE1
. Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以通过 ln 命令来实现此目的。与此类似的东西
我认为运行这个就足够了
you can achive this by
ln
command. something similar to thisRunning this one will be enough I think
只需设置一个变量:
fileDir=/home/grammin/testFiles/program1/important
。现在 ls $fileDir/FILE1 将会达到预期的效果。
Just set a variable:
fileDir=/home/grammin/testFiles/program1/important
.Now
ls $fileDir/FILE1
will have the desired effect.您应该创建指向所需路径的符号链接,并在使用终端时使用链接路径作为“键入快捷方式”。
例如,如果您有 /this/is/a/very/long/filesystem/path,则可以使用 ln -s /this/is/a/very/long 创建链接/filesystem/path pth 然后使用
ls pth/FILE1
You should create a symlink to the path you want, and use the link path as a "typing shortcut" when using terminal.
For example, if you have
/this/is/a/very/long/filesystem/path
, you could create the link withln -s /this/is/a/very/long/filesystem/path pth
and then usels pth/FILE1
在你的 .bashrc 文件中,添加
importantdir=/home/grammin/testFiles/program1/import/
然后使用该变量与美元,例如
ls $importantdir/FILE1
in your .bashrc file, add
importantdir=/home/grammin/testFiles/program1/important/
Then use that variable with a dollar, e.g.
ls $importantdir/FILE1