crossplatform.ru

Здравствуйте, гость ( Вход | Регистрация )

> цикл в bat-файле
Litkevich Yuriy
  опции профиля:
сообщение 17.4.2008, 12:56
Сообщение #1


разработчик РЭА
*******

Группа: Сомодератор
Сообщений: 9669
Регистрация: 9.1.2008
Из: Тюмень
Пользователь №: 64

Спасибо сказали: 807 раз(а)




Репутация:   94  


нужно сделать цикл в bat-файле, чтобы выполнять однотипные действия над каждым файлом из заданного каталога, как это сделать?
Перейти в начало страницы
 
Быстрая цитата+Цитировать сообщение
 
Начать новую тему
Ответов
ViGOur
  опции профиля:
сообщение 17.4.2008, 13:07
Сообщение #2


Мастер
******

Группа: Модератор
Сообщений: 3296
Регистрация: 9.10.2007
Из: Москва
Пользователь №: 4

Спасибо сказали: 231 раз(а)




Репутация:   40  


Как вариант:
FOR /F "eol=; tokens=2,3* delims=, " %i in (myfile.txt) do @echo %i %j %k

    would parse each line in myfile.txt, ignoring lines that begin with
    a semicolon, passing the 2nd and 3rd token from each line to the for
    body, with tokens delimited by commas and/or spaces.  Notice the for
    body statements reference %i to get the 2nd token, %j to get the
    3rd token, and %k to get all remaining tokens after the 3rd.  For
    file names that contain spaces, you need to quote the filenames with
    double quotes.  In order to use double quotes in this manner, you also
    need to use the usebackq option, otherwise the double quotes will be
    interpreted as defining a literal string to parse.

    %i is explicitly declared in the for statement and the %j and %k
    are implicitly declared via the tokens= option.  You can specify up
    to 26 tokens via the tokens= line, provided it does not cause an
    attempt to declare a variable higher than the letter 'z' or 'Z'.
    Remember, FOR variables are single-letter, case sensitive, global,
    and you can't have more than 52 total active at any one time.

    You can also use the FOR /F parsing logic on an immediate string, by
    making the filenameset between the parenthesis a quoted string,
    using single quote characters.  It will be treated as a single line
    of input from a file and parsed.

    Finally, you can use the FOR /F command to parse the output of a
    command.  You do this by making the filenameset between the
    parenthesis a back quoted string.  It will be treated as a command
    line, which is passed to a child CMD.EXE and the output is captured
    into memory and parsed as if it was a file.  So the following
    example:

      FOR /F "usebackq delims==" %i IN (`set`) DO @echo %i

    would enumerate the environment variable names in the current
    environment.
Перейти в начало страницы
 
Быстрая цитата+Цитировать сообщение

Сообщений в этой теме
- Litkevich Yuriy   цикл в bat-файле   17.4.2008, 12:56
- - ViGOur   Что именно за действия и формат файла?   17.4.2008, 12:57
- - ViGOur   Как вариант: FOR /F "eol=; tokens=2,3* delims=...   17.4.2008, 13:07
- - Tonal   Я уже давно вместь bat-файлов python-ом пользуюсь.   17.4.2008, 13:30
- - Litkevich Yuriy   ЦитатаЧто именно за действия и формат файла? в кач...   17.4.2008, 13:35
- - Litkevich Yuriy   2 Tonal, а у меня есть пайтон, только времени изуч...   17.4.2008, 13:38
- - ViGOur   Имя получаешь с помощь внутренних переменных сред:...   17.4.2008, 15:25
- - Andrew Selivanov   Ну например вот так я закачиваю файлики на FTP (дв...   17.4.2008, 16:13
- - Litkevich Yuriy   что означает @ в bat'нике?   17.4.2008, 16:50
- - Andrew Selivanov   Цитата(Litkevich Yuriy @ 17.4.2008, 17:50...   17.4.2008, 17:03
- - Litkevich Yuriy   т.е. если веня вывод вообще не интерисует, то я мо...   17.4.2008, 17:05
- - Andrew Selivanov   Цитата(Litkevich Yuriy @ 17.4.2008, 18:05...   17.4.2008, 17:16
- - Litkevich Yuriy   всем спаисбо, завтра, на свежую голову, пойду осва...   17.4.2008, 18:13
- - Tonal   В python-е обычно проще чем в bat-нике получается....   17.4.2008, 18:27
|- - Andrew Selivanov   Цитата(Tonal @ 17.4.2008, 19:27) В python...   18.4.2008, 9:34
- - Litkevich Yuriy   у меня справка не откликается на слово FOR   17.4.2008, 18:40
- - ViGOur   У меня тоже, но зато откликается на for /?   18.4.2008, 7:47
- - Litkevich Yuriy   да это я по утру нашел   18.4.2008, 7:48
- - Tonal   Раздел "Справочник по параметрам командной ст...   18.4.2008, 8:27
- - Tonal   Про Python vs Perl можно поспорить, ну а истоки - ...   18.4.2008, 10:10
- - Lunatic   помогите пожалуста нужно сделать чтобы код в батн...   14.6.2009, 6:52
- - Kagami   Пишем батник: Раскрывающийся текст@echo off :L...   14.6.2009, 8:10
- - panter_dsd   Можно взять sleep.exe из msys.   14.6.2009, 10:42
|- - Kagami   Цитата(panter_dsd @ 14.6.2009, 11:42) Мож...   14.6.2009, 17:44
- - Lunatic   Kagami, спасибо большое написал, откомпилил в виж...   14.6.2009, 16:19


Быстрый ответОтветить в данную темуНачать новую тему
Теги
Нет тегов для показа


5 чел. читают эту тему (гостей: 5, скрытых пользователей: 0)
Пользователей: 0




RSS Текстовая версия Сейчас: 29.11.2024, 19:38