如何缩短 Red Hat Linux 中的路径?

发布于 2024-12-07 18:54:51 字数 270 浏览 0 评论 0原文

所以我有一堆文件用于在一个长路径的目录中进行测试,所以说有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

故乡的云 2024-12-14 18:54:51

您可以通过 ln 命令来实现此目的。与此类似的东西

ln -s /home/grammin/testFiles/program1/important/ fileDir

我认为运行这个就足够了

you can achive this by ln command. something similar to this

ln -s /home/grammin/testFiles/program1/important/ fileDir

Running this one will be enough I think

宁愿没拥抱 2024-12-14 18:54:51

只需设置一个变量: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.

日裸衫吸 2024-12-14 18:54:51

您应该创建指向所需路径的符号链接,并在使用终端时使用链接路径作为“键入快捷方式”。

例如,如果您有 /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 with ln -s /this/is/a/very/long/filesystem/path pth and then use ls pth/FILE1

む无字情书 2024-12-14 18:54:51

在你的 .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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文