Batch Text Generator

Bin_Hex_Oct_Dec_converter  Text_sort 

Make Batch Commands base on File Name

Example:

Make a batch file to change name of all files under d:\

Text generator

User can get file list by using File->Load->DOS command output Menu:

Settings:

1) Replace unit=line

2) Search for pattern=.*

3) rename \"$match\" \"$match.bak\"\n


Batch Commands with increasing ID

Example:

Make 10 directories with 2 increasing ID

Text generator

Settings:

1) Replace Advanced Page->Insert begin text:

make_batch1("mkdir dir_${batch_no1}_${batch_no2}\n",10, 1,1,2,"d", 1,1,5,"d")

2) Notes: make_batch1(text,count, start1, step1, stop1, fmt1, start2, step2, stop2, fmt2, start3,step3,stop3,fmt3)

count=10, number of commands is 10

batch_no1 start=1, step=1, end=2

batch_no2 start=1, step=1, end=5

Batch Commands with non-related increasing ID

Example:

Make batch text with loop n1=1..10, n2=2,4,6,8, n3=3,6,9

Text generator

Settings:

1) Replace Advanced Page->Insert begin text:

make_batch("testbatch n1=${batch_no1}, n2=${batch_no2}, n3=${batch_no3}\n",10, 1,1,10,"d", 2,2,8,"d", 3,3,9,"d")

2) Notes: make_batch(text,count start1, step1, stop1, fmt1, start2, step2, stop2, fmt2, start3, step3, stop3, fmt3)

Count=10, number of commands is 10

batch_no1 start=1, step=1, end=10

batch_no2 start=2, step=2, end=8

batch_no3 start=3, step=3, end=9

Notes:

For batch replace files, please refer to Replace Pioneer help manual.


Other Examples of "Text generator"
How to generate a csv file from a template file and a list of words?
How to generate an html page that include download links of specified files?
How to create a text file including filenames in a folder with specified format?
How to use letter "a-z" and "-" to generate a full list of 3 character strings?
How to generate a full list of 4 character strings that consists of a-z and 0-9?
How to copy a file 100 times with different name from 1.txt to 100.txt?
How to generate numbers from 0029000 down to 0010001?
How to generate the 9x9 multiplication table?

Search all "Text generator" examples