2013-01-12 53 views
0

我有「的網址不被識別爲一個內部或外部命令」的錯誤,這是內我的代碼我試圖做一個鏈接縮短和錯誤出現

@echo off 
set /p firstline=<qwe.txt 
echo %firstline% 
for %%a in (%firstline%) DO (
echo & set text=http://adfoc.us/api/?key=c803bc5b2f2e8ad5ccb0166d4bc898ae&url=%%a 
) 
echo %text% > output.txt 
pause 

回答

1

特殊字符& url需要用^轉義或者將特殊字符放在引用字符串set text="One&Two"中。而且這個echo語句在set語句之前什麼都不做。

@echo off 
set /p firstline=<qwe.txt 
echo %firstline% 
for %%a in (%firstline%) DO (
    set "text=http://adfoc.us/api/?key=c803bc5b2f2e8ad5ccb0166d4bc898ae^&url=%%a" 
) 
echo %text%>output.txt 
pause 
+0

感謝您的幫助 – user1972247

相關問題