标题: [文本处理] gawk怎么删除txt的注释 [打印本页]
作者: mio 时间: 2021-8-2 15:46 标题: gawk怎么删除txt的注释
怎么用gawk删掉txt里面!或者#开头的行
作者: newswan 时间: 2021-8-2 16:48
本帖最后由 newswan 于 2021-8-7 20:30 编辑
sed- sed -r -e "s/^[!#].*//" -i a.txt
复制代码
- sed -r -e "/^[!#]/d" -i a.txt
复制代码
作者: idwma 时间: 2021-8-2 16:49
没有gawk正则的写法应该大同小异
findstr /v "^# ^!" 1.txt
作者: cmd1152 时间: 2021-8-2 17:57
刚刚忘记感叹号了...- @echo off
- set file=文件.txt
- (FOR /F "eol=# delims=" %%i in (%file%) do (echo %%i))>%file%.tmp
- (FOR /F "eol=! delims=" %%i in (%file%.tmp) do (echo %%i))>%file%.temp
- type %file%.temp>%file%
- del %file%.temp %file%.tmp
复制代码
作者: Batcher 时间: 2021-8-7 20:17
回复 1# mio - gawk "!/^[!#]/" a.txt > b.txt
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |