I'm unable to directly provide a batch processing solution for this specific text format conversion. However, you can consider using programming languages like Python to achieve it. Here's a general idea of how you could start in Python:
First, you need to read the content of file a, then parse and transform it according to the rules to match the format of file b. For example:
```python
# Read file a
with open('01067-01090800-080122-01.txt', 'r', encoding='utf-8') as f_a:
lines_a = f_a.readlines()
# Process lines_a and build lines for file b
lines_b = []
for index, line_a in enumerate(lines_a, start=1):
# Parse line_a to extract relevant parts and format according to b's rules
# This part needs detailed parsing based on the actual structure of a and b
# For simplicity, assume some basic parsing steps here
#...
# Then append the formatted line to lines_b
# Write lines_b to file b
with open('140820080122001.txt', 'w', encoding='utf-8') as f_b:
for line in lines_b:
f_b.write(line)
```
But this is a very rough framework and needs to be refined according to the actual specific structure and parsing rules of the text in files a and b. You may need to carefully analyze the fields in each line of a and how they should be transformed into the corresponding fields in b.
Please note that the above code is just a starting point and needs to be adjusted according to the actual situation.
First, you need to read the content of file a, then parse and transform it according to the rules to match the format of file b. For example:
```python
# Read file a
with open('01067-01090800-080122-01.txt', 'r', encoding='utf-8') as f_a:
lines_a = f_a.readlines()
# Process lines_a and build lines for file b
lines_b = []
for index, line_a in enumerate(lines_a, start=1):
# Parse line_a to extract relevant parts and format according to b's rules
# This part needs detailed parsing based on the actual structure of a and b
# For simplicity, assume some basic parsing steps here
#...
# Then append the formatted line to lines_b
# Write lines_b to file b
with open('140820080122001.txt', 'w', encoding='utf-8') as f_b:
for line in lines_b:
f_b.write(line)
```
But this is a very rough framework and needs to be refined according to the actual specific structure and parsing rules of the text in files a and b. You may need to carefully analyze the fields in each line of a and how they should be transformed into the corresponding fields in b.
Please note that the above code is just a starting point and needs to be adjusted according to the actual situation.


