我想用超過1000個文件(使用PowerShell)替換一個url。 即代替thomas.corp.test.com:81/gt/se.ashx
與george.corp.test.com:91/gt/se.ashx
。Grep和SED在PowerShell中不工作
我可以使用以下命令在linux機器上執行它。
grep -lr http:\/\/thomas\.corp\.test\.com:81\/gt\/se\.ashx . |
xargs sed -i '' 's/http:\/\/thomas\.corp\.test\.com:81\/gt\/se\.ashx/https:\/\/george\.corp\.test\.com:91\/gt\/se\.ashx/g'
需要幫助找出PowerShell的等效項。
誰是保持負..請具體 – TomJava
沒有downvote,但你怎麼能希望找到在Windows OS的Linux命令?如果你想在Windows上使用bash環境,你可以在gnuwin32(GNU工具的簡單端口),MinGW(靠近bash控制檯)或Cygwin(幾乎是Windows上的Linux模擬)上使用google。你目前的問題很糟糕,因爲它沒有顯示任何研究。你應該閱讀[問]看到山楂問題應該在這裏被問到。 –
@SergeBallesta:*「......你如何能夠在Windows操作系統上找到Linux命令?」* Linux的[Windows子系統](https://en.wikipedia.org/wiki/Windows_Subsystem_for_Linux),又名「Ubuntu在Windows上「,是64位Windows 10的可選功能。 –