摘要:
1、测试数据 [root@centos79 test]# cat a.txt 3 s g a e f k n y 2、xargs [root@centos79 test]# cat a.txt 3 s g a e f k n y [root@centos79 test]# cat a.txt | x 阅读全文
posted @ 2021-07-24 23:49
小鲨鱼2018
阅读(334)
评论(0)
推荐(0)
摘要:
1、问题 [root@centos79 test]# unlzma test_chr22.tar.lzma bash: unlzma: command not found... 2、 [root@centos79 test]# yum install -y lzma Loaded plugins: 阅读全文
posted @ 2021-07-24 19:33
小鲨鱼2018
阅读(176)
评论(0)
推荐(0)
摘要:
1、测试数据 [root@PC3 test]# cat a.txt e r e y e u e e e g e 3 h r 1 3 e g e y e e s e e e e e e t s t e s r d g e s w t e [root@PC3 test]# cat c.txt 1 x r 阅读全文
posted @ 2021-07-24 13:28
小鲨鱼2018
阅读(294)
评论(0)
推荐(0)
摘要:
1、测试数据 [root@PC3 test]# cat a.txt e r e y e u e e e g e 3 h r 1 3 e g e y e e s e e e e e e t s t e s r d g e s w t e [root@PC3 test]# cat b.txt 1 3 5 阅读全文
posted @ 2021-07-24 12:48
小鲨鱼2018
阅读(855)
评论(0)
推荐(0)
摘要:
1、测试数据 [root@PC3 test]# cat a.txt e r e y e u e e e g e 3 h r 1 3 e g e y e e s e e e e e 2、将3-5列中的e替换为x [root@PC3 test]# cat a.txt e r e y e u e e e 阅读全文
posted @ 2021-07-24 12:41
小鲨鱼2018
阅读(1007)
评论(0)
推荐(0)
摘要:
1、测试数据 [root@PC3 test]# cat a.txt e r e y e u e e e g e 3 h r 1 3 e g e y e e s e e e e e 2、将每行的第3个e即其后的e替换为x [root@PC3 test]# cat a.txt e r e y e u e 阅读全文
posted @ 2021-07-24 01:58
小鲨鱼2018
阅读(230)
评论(0)
推荐(0)
摘要:
1、测试数据 [root@PC3 test]# cat a.txt e r t y d a d g 4 3 1 3 d g k 2、awk实现 [root@PC3 test]# cat a.txt e r t y d a d g 4 3 1 3 d g k [root@PC3 test]# awk 阅读全文
posted @ 2021-07-24 01:50
小鲨鱼2018
阅读(82)
评论(0)
推荐(0)
摘要:
1、测试数据 [root@PC3 test]# cat b.txt sfg3 dg2k 2、删除第三个字符,sed删除 [root@PC3 test]# cat b.txt sfg3 dg2k [root@PC3 test]# sed 's/.//3' b.txt sf3 dgk 3、cut删除 [ 阅读全文
posted @ 2021-07-24 01:46
小鲨鱼2018
阅读(445)
评论(0)
推荐(0)
摘要:
1、free [root@PC3 /]# free total used free shared buffers cached Mem: 8162676 7297800 864876 9584 32 6237016 -/+ buffers/cache: 1060752 7101924 Swap: 8 阅读全文
posted @ 2021-07-24 01:05
小鲨鱼2018
阅读(1528)
评论(0)
推荐(0)