- UID
- 38867
- 阅读权限
- 80
- 注册时间
- 2010-1-23
- 最后登录
- 2021-9-10
- 在线时间
- 311 小时
- 性别
- 男
- 生日
- 1988 年 11 月 2 日
国王
- 耕战
- 933
- 鹰币
- 4
- 天龙币
- 0
- 回帖
- 249
|
楼主 |
发表于 2013-9-8 21:29:50
|
显示全部楼层
define.py
本帖最后由 tankant 于 2013-9-8 22:06 编辑
#!/usr/bin/env python
import os,re
file_list=[]
def get_all_file(floder_path):
file_list=[]
if floder_path is None:
raise Exception("floder_path is None")
for dirpath, dirnames, filenames in os.walk(floder_path):
for name in filenames:
file_list.append(dirpath + '/' + name)
return file_list
file_list_result=get_all_file("/media/926bfa98-9eb6-414d-ab62-88b3fd1ba801/geli/HawKAoC/AI")
for i in file_list_result:
i=re.sub(r'\s+','\\ ',i)
stmt="sed -i 's/my-unique-unit/aort-my-unique-unit1/g' "+i
os.system(stmt)
|
|