linux中,shell脚本更改当前路径
程序员文章站
2024-01-04 20:40:52
...
输入命令 op ,可通过Shell调用cd命令,实现切换至指定目录
用户名:test
脚本:~/.shell/go.sh
.bashrc 中的配置
alias op='/home/test/.shell/go.sh'
.shell/go.sh内容
#!/bin/sh
cd /home/test/Code/os/testdir
执行:
[[email protected] ~]$ op
[[email protected] testdir]$
即达到目的。
如有问题,欢迎私信交流。