2012-08-24 55 views
1

我想要現在:如何用bash腳本中的冒號查找並替換正斜槓?

dir=$(pwd) 
dir=${$dir//\//:} 

但這不工作的一些原因。

這樣做的關鍵在於將bash路徑轉換爲applescript路徑,而不對其中的路徑進行硬編碼。

我基本上是試圖做這個相反: https://apple.stackexchange.com/questions/4938/how-to-change-applescript-path-to-a-terminal-style-path

+1

您可以在內部$ PWD變量中使用,而不是執行pwd命令。 – jordanm

回答

5

你的語法,只是有點過了,不要在變量使用$${}結構:

dir=${dir//\//:}