Walk a directory/Non-recursively: Difference between revisions

Content deleted Content added
Simple9371 (talk | contribs)
Add Batch File
Simple9371 (talk | contribs)
Line 102: Line 102:
<lang>@for /F "tokens=*" %%F in ('dir /b "%windir%\system32\*.exe"') do echo %%F</lang>
<lang>@for /F "tokens=*" %%F in ('dir /b "%windir%\system32\*.exe"') do echo %%F</lang>
*Command-line:
*Command-line:
<lang>@for /F "tokens=*" %F in ('dir /b "%windir%\system32\*.exe"') do echo %F</lang>
<lang>for /F "tokens=*" %F in ('dir /b "%windir%\system32\*.exe"') do echo %F</lang>


=={{header|BBC BASIC}}==
=={{header|BBC BASIC}}==