摘要: 001、 >>> str1 = ">aabbcc" >>> if str1.startswith(">"): ... print("yes") ... yes >>> if not str1.startswith(">"): ## python中if语句取反 ... print("yes") ... 阅读全文
posted @ 2022-11-02 16:24 小鲨鱼2018 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 001、提取文件的最后几列 [root@pc1 test3]# ls a.txt [root@pc1 test3]# cat a.txt ## 测试文件 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 0 阅读全文
posted @ 2022-11-02 12:02 小鲨鱼2018 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test1]# ls a.txt [root@PC1 test1]# cat a.txt 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 02 阅读全文
posted @ 2022-11-02 11:21 小鲨鱼2018 阅读(118) 评论(0) 推荐(0) 编辑
摘要: -b:以字节为单位进行截取。 -c:以字符为单位进行截取。 001、 [root@PC1 test1]# ls a.txt b.txt [root@PC1 test1]# cat a.txt ewr23436546cfgfd [root@PC1 test1]# cut -b 2 a.txt w [r 阅读全文
posted @ 2022-11-02 10:52 小鲨鱼2018 阅读(692) 评论(0) 推荐(0) 编辑
摘要: 001、跳转到指定列 n + | (管道) 或者 0nl(小写的L) 002、跳转到行首、行尾 0:行首 $:行尾 home:行首 end:行尾 003、左右移动 nl(小写的L):向右移动n位 hl(小写的L):向左移动n位 阅读全文
posted @ 2022-11-02 10:45 小鲨鱼2018 阅读(493) 评论(0) 推荐(0) 编辑