要使用shell腳本獲取當(dāng)前目錄,可以使用內(nèi)置的環(huán)境變量PWD
或者$(pwd)
命令來獲取當(dāng)前工作目錄。以下是兩種方法:
PWD
:current_dir=$PWD
echo "當(dāng)前目錄是:$current_dir"
$(pwd)
命令:current_dir=$(pwd)
echo "當(dāng)前目錄是:$current_dir"
以上兩種方法都會獲取當(dāng)前shell所在的工作目錄,并將其賦值給變量current_dir
,然后打印出來。