それを明確にするために最初に、input.txtファイルを入力として使用し、output.txtとして出力するURL短縮スクリプトを作成しています。ここで、input.txtに無制限のリンクを配置できます。
これは私が得たものです
@echo off
set /p firstline=<input.txt
echo %firstline%
for %%a in (%firstline%) DO (
set "text=http://adfoc.us/api/?key=c803bc5b2f2e8ad5ccb0166d4bc898ae^&url=%%a"
)
echo %text%>output.txt
例input.txtには600行あり、すべてoutput.txtに入れたい