我的for/f声明出了什么问题

rka*_*257 3 for-loop batch-file

有人可以解释我的陈述有什么问题吗?我正在尝试将其作为bat文件运行.我在网上查看了各种示例,我似乎无法弄清楚为什么会出现语法错误

FOR /F "tokens=*" %%A in (c:\scripts\destination.txt) DO 
(
echo inside the for loop
pause
)
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:

该命令的语法不正确.C:\ Scripts> FOR/F"tokens =*"%A in(c:\ scripts\destination.txt)DO

fox*_*ive 6

括号必须在同一行.

tokens=*删除前导空格 - delims=不会.

FOR /F "delims=" %%A in (c:\scripts\destination.txt) DO (
echo %%A - inside the for loop
pause
)
Run Code Online (Sandbox Code Playgroud)