是否可以从脚本更改当前目录?
我想在Bash中为目录导航创建一个实用程序。我创建了一个如下所示的测试脚本:
- #!/bin/bash
- cd /home/artemb
当我从Bash shell执行脚本时,当前目录不会更改。是否有可能从脚本中更改当前的shell目录?
您需要将脚本转换为shell函数:
- #!/bin/bash
- #
- # this script should not be run directly,# instead you need to source it from your .bashrc,# by adding this line:
- # . ~/bin/myprog.sh
- #
- function myprog() {
- A=$1
- B=$2
- echo "aaa ${A} bbb ${B} ccc"
- cd /proc
- }
原因是每个进程都有自己的当前目录,当您从shell执行程序时,它将在新进程中运行。标准的“cd”,“pushd”和“popd”内置于shell解释器,因此它们会影响shell进程。