溫馨提示×

shell怎么獲取當(dāng)前路徑并賦值

小億
229
2024-03-06 17:52:45
欄目: 編程語言

可以使用pwd命令來獲取當(dāng)前路徑,并使用變量來存儲這個路徑。以下是一個示例:

current_path=$(pwd)
echo "當(dāng)前路徑是: $current_path"

在這個示例中,pwd命令用來獲取當(dāng)前路徑,并將結(jié)果賦值給變量current_path。然后使用echo命令來打印出當(dāng)前路徑。

另外,也可以直接使用$PWD來獲取當(dāng)前路徑,示例如下:

current_path=$PWD
echo "當(dāng)前路徑是: $current_path"

0