0
這是我的文件,試圖讀取hosts文件。出於某種原因,它沒有正常工作。嘗試自己的代碼以查看錯誤消息。批處理for/f代碼工作
@echo off
cd %windir%/System32/drivers/etc
for /f "eol=# tokens=* delims=," %%a in (%windir%/System32/drivers/etc/hosts) do type %%a
pause>nul
這是我的文件,試圖讀取hosts文件。出於某種原因,它沒有正常工作。嘗試自己的代碼以查看錯誤消息。批處理for/f代碼工作
@echo off
cd %windir%/System32/drivers/etc
for /f "eol=# tokens=* delims=," %%a in (%windir%/System32/drivers/etc/hosts) do type %%a
pause>nul
type
需要文件名。你可能意思是echo
。 作爲另一個問題,主機文件不是逗號,而是空白分隔。所以您需要將您的分隔符更改爲包含空格和製表符,假設您只需要主機名。