s***e 发帖数: 5242 | 1 我有10组文档,编号1-10
每组有很多文档A-Z
1A和2A的区别是,1A中的***1的在2A中都是***2。
请问如何批处理 |
d**o 发帖数: 864 | 2 写一个script
bash
python
perl
any..
【在 s***e 的大作中提到】 : 我有10组文档,编号1-10 : 每组有很多文档A-Z : 1A和2A的区别是,1A中的***1的在2A中都是***2。 : 请问如何批处理
|
f*********e 发帖数: 8453 | 3 sed -i 's/***1/***2/g' 2A
be careful to test first because not sure if '*' in your question stands for
any character or a specific character. If it's not a
pattern, need to escape.
【在 s***e 的大作中提到】 : 我有10组文档,编号1-10 : 每组有很多文档A-Z : 1A和2A的区别是,1A中的***1的在2A中都是***2。 : 请问如何批处理
|
s***e 发帖数: 5242 | 4 it works 3x!
for
【在 f*********e 的大作中提到】 : sed -i 's/***1/***2/g' 2A : be careful to test first because not sure if '*' in your question stands for : any character or a specific character. If it's not a : pattern, need to escape.
|