ZhangZhihui's Blog  

2020年11月24日

摘要: scnzzh@ZUBT:~$ echo abc | wc -m 4 abcscnzzh@ZUBT:~$ echo -n 'abc' | wc -m 3 -m, --chars print the character counts 阅读全文
posted @ 2020-11-24 14:14 ZhangZhihuiAAA 阅读(69) 评论(0) 推荐(0) 编辑
 
摘要: scnzzh@ZUBT:~$ echo 'abc123' | tr '[:lower:]' '[:upper:]' ABC123 scnzzh@ZUBT:~$ echo 'ABC123' | tr '[:upper:]' '[:lower:]' abc123 $ tr '[:upper:]' '[: 阅读全文
posted @ 2020-11-24 13:26 ZhangZhihuiAAA 阅读(127) 评论(0) 推荐(0) 编辑
 
摘要: Search and print matched lines: scnzzh@ZUBT1:~/zzh$ sed -n '/ExecStart/p' docker.service ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/contain 阅读全文
posted @ 2020-11-24 11:35 ZhangZhihuiAAA 阅读(104) 评论(0) 推荐(0) 编辑