您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)如何使用python實(shí)現(xiàn)unix2dos和dos2unix命令的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來(lái)看看吧。
直接上代碼,保存為python文件如unix2dos.py然后使用命令
unix2dos.py {unix2dos|dos2unix} {dirname|filename}
#! /usr/bin/env python # coding=utf-8 import os import sys try: input = raw_input except: pass def usage(): print('Usage:') print('\t %s' % ('unix2dos.py {unix2dos|dos2unix} {dirname|filename}')) def err_exit(msg): if msg: print('%s' % msg) usage() sys.exit(0) def getfiles(root): for dirpath, dirnames, filenames in os.walk(root): for filename in filenames: yield os.path.join(dirpath, filename) def format_file(file, toformat='unix2dos'): print('Formatting %s:\t%s' % (toformat, file)) if not os.path.isfile(file): print('ERROR: %s invalid normal file' % file) return if toformat == 'unix2dos': line_sep = '\r\n' else: line_sep = '\n' with open(file, 'r') as fd: tmpfile = open(file+toformat, 'w+b') for line in fd: line = line.replace('\r', '') line = line.replace('\n', '') tmpfile.write(line+line_sep) tmpfile.close() os.rename(file+toformat, file) def uni_format_proc(filename, toformat): if not toformat or toformat not in ['unix2dos', 'dos2unix']: err_exit('ERROR: %s: Invalid format param' % (toformat)) if not filename or not os.path.exists(filename): err_exit('ERROR: %s: No such file or directory' % (filename)) if os.path.isfile(filename): format_file(filename, toformat) return if os.path.isdir(filename): for file in getfiles(filename): uni_format_proc(file, toformat) if __name__ == '__main__': if len(sys.argv) != 3: err_exit('ERROR: Invalid arguments') uni_format_proc(filename=sys.argv[2], toformat=sys.argv[1])
感謝各位的閱讀!關(guān)于“如何使用python實(shí)現(xiàn)unix2dos和dos2unix命令”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。