我已經從我嘗試實現的內容中摘錄了一小段簡化代碼。本質上,位置變量取自配置文件,並始終採用/xyz/$id/abc
的格式,其中$id
表示在服務器上運行的應用程序。在另一個變量中使用變量時不顯示實際值
的代碼如下:
#!/bin/bash
echo "Enter the ID"
read id
echo
echo "Enter the location :"
read location
echo
echo "${id}"
echo "${location}"
所以,當我運行代碼:
$ ./test.sh
Enter the ID
xx
Enter the location :
/data/$id/app
xx
/data/$id/app
我所試圖實現的是第二個變量,基於上述輸入打印/data/xx/app
。
在此先感謝您的幫助。
謝謝...工程就像我需要它! – freddie