用Python实现换行符转换的脚本的教程
作者:dbzhang800 时间:2021-12-10 23:25:42
很简单的一个东西,在'\n'、'\r\n'、'\r'3中换行符之间进行转换。
用法
usage: eol_convert.py [-h] [-r] [-m {u,p,w,m,d}] [-k] [-f]
filename [filename ...]
Convert Line Ending
positional arguments:
filename file names
optional arguments:
-h, --help show this help message and exit
-r walk through directory
-m {u,p,w,m,d} mode of the line ending
-k keep output file date
-f force conversion of binary files
源码
这只能算是argparse模块和os模块的utime()、stat()、walk()的一个简单的练习。可以用,但还相当不完善。
#!/usr/bin/env python
#2009-2011 dbzhang800
import os
import re
import os.path
def convert_line_endings(temp, mode):
if mode in ['u', 'p']: #unix, posix
temp = temp.replace('\r\n', '\n')
temp = temp.replace('\r', '\n')
elif mode == 'm': #mac (before Mac OS 9)
temp = temp.replace('\r\n', '\r')
temp = temp.replace('\n', '\r')
elif mode == 'w': #windows
temp = re.sub("\r(?!\n)|(?<!\r)\n", "\r\n", temp)
return temp
def convert_file(filename, args):
statinfo = None
with file(filename, 'rb+') as f:
data = f.read()
if '\0' in data and not args.force: #skip binary file... ?
print '%s is a binary file?, skip...' % filename
return
newdata = convert_line_endings(data, args.mode)
if (data != newdata):
statinfo = os.stat(filename) if args.keepdate else None
f.seek(0)
f.write(newdata)
f.truncate()
if statinfo:
os.utime(filename, (statinfo.st_atime, statinfo.st_mtime))
print filename
def walk_dir(d, args):
for root, dirs, files in os.walk(d):
for name in files:
convert_file(os.path.join(root, name), args)
if __name__ == '__main__':
import argparse
import sys
parser = argparse.ArgumentParser(description='Convert Line Ending')
parser.add_argument('filename', nargs='+', help='file names')
parser.add_argument('-r', dest='recursive', action='store_true',
help='walk through directory')
parser.add_argument('-m', dest='mode', default='d', choices='upwmd',
help='mode of the line ending')
parser.add_argument('-k', dest='keepdate', action='store_true',
help='keep output file date')
parser.add_argument('-f', dest='force', action='store_true',
help='force conversion of binary files')
args = parser.parse_args()
if args.mode == 'd':
args.mode = 'w' if sys.platform == 'win32' else 'p'
for filename in args.filename:
if os.path.isdir(filename):
if args.recursive:
walk_dir(filename, args)
else:
print '%s is a directory, skip...' % filename
elif os.path.exists(filename):
convert_file(filename, args)
else:
print '%s does not exist' % filename
标签:Python
0
投稿
猜你喜欢
Python入门_浅谈for循环、while循环
2021-02-07 13:17:23
Go语言编程中判断文件是否存在是创建目录的方法
2024-05-21 10:22:02
Java使用JDBC连接数据库
2024-01-22 03:21:45
Web设计的成就感
2009-09-04 19:02:00
利用python调用摄像头的实例分析
2022-01-03 22:10:14
JS页内查找关键词的高亮显示
2013-07-18 21:13:54
python执行scp命令拷贝文件及文件夹到远程主机的目录方法
2023-07-10 09:12:19
conda查看、创建、删除、激活与退出环境命令详解
2022-02-25 19:11:09
Golang指针的操作以及常用的指针函数
2024-02-08 11:46:49
使用SQL Server 2008管理非结构化数据
2009-01-08 15:28:00
详解MySQL监控工具 mysql-monitor
2024-01-25 23:03:16
python做接口测试的必要性
2022-06-09 00:05:41
js与jquery获取父级元素,子级元素,兄弟元素的实现方法
2024-05-11 09:43:01
sql server如何去除数据中的一些无用的空格
2024-01-18 02:22:22
JS简单动画封装浅析
2024-04-22 13:24:24
5个款MySQL常用维护管理工具
2010-10-25 19:45:00
简述MySQL 正则表达式
2024-01-16 12:17:44
优化 MySQL 语句的十个建议
2012-05-08 07:14:36
python+unittest+requests实现接口自动化的方法
2022-04-10 08:47:38
vue3 自定义指令控制按钮权限的操作代码
2024-05-09 15:08:59