ZhangZhihui's Blog  
上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 78 下一页

2020年11月12日

摘要: zzh@ZUBT:~$ echo 'aaa123' > zzh.txt zzh@ZUBT:~$ echo 'aaa456' >> zzh.txt zzh@ZUBT:~$ cmd='grep aaa zzh.txt | grep 123' zzh@ZUBT:~$ eval $cmd aaa123 阅读全文
posted @ 2020-11-12 10:08 ZhangZhihuiAAA 阅读(88) 评论(0) 推荐(0) 编辑
 
摘要: zzh@ZZHPC:~$ if [ 1 -lt 0 -o 1 -gt 0 ]; then echo "yyy"; else echo "nnn"; fi yyy zzh@ZZHPC:~$ if [ 1 -lt 2 -a 1 -gt 0 ]; then echo "yyy"; else echo "n 阅读全文
posted @ 2020-11-12 09:42 ZhangZhihuiAAA 阅读(166) 评论(0) 推荐(0) 编辑

2020年11月11日

摘要: zzh@ZUBT:~$ echo ansible_host=10.0.2.5 | awk -F'=' '{print $2}' 10.0.2.5 scnzzh@ZUBT:~$ echo 'abaca' | awk -F'[bc]' '{print $1 $2 $3}' aaa scnzzh@ZUBT 阅读全文
posted @ 2020-11-11 21:05 ZhangZhihuiAAA 阅读(87) 评论(0) 推荐(0) 编辑

2020年11月9日

摘要: List files in tar file: tar -tf filename.tar.gz tar -tvf filename.tar.gz Create tar.gz file: zzh@ZUBT:~$ tar -czvf aaa.tar.gz aaa aaa/ aaa/a.txt Extra 阅读全文
posted @ 2020-11-09 13:20 ZhangZhihuiAAA 阅读(47) 评论(0) 推荐(0) 编辑

2020年10月20日

摘要: scnzzh@ZUBT:~$ sudo echo -e 'devops\tALL=(ALL)\tNOPASSWD:\tALL' > /etc/sudoers.d/devopsbash: /etc/sudoers.d/devops: Permission denied The redirection 阅读全文
posted @ 2020-10-20 09:57 ZhangZhihuiAAA 阅读(229) 评论(0) 推荐(0) 编辑
 
摘要: scnzzh@ZUBT1:~$ sudo gpasswd -d root docker Removing user root from group docker scnzzh@ZUBT1:~$ sudo usermod -aG docker scnzzh scnzzh@ZUBT1:~$ groups 阅读全文
posted @ 2020-10-20 09:08 ZhangZhihuiAAA 阅读(160) 评论(0) 推荐(0) 编辑

2020年10月15日

摘要: dpkg -l | grep pkg_name zzh@ZZHPC:~$ sudo apt search postgresql-client Sorting... Done Full Text Search... Done postgresql-client/jammy,jammy 14+238 a 阅读全文
posted @ 2020-10-15 14:36 ZhangZhihuiAAA 阅读(124) 评论(0) 推荐(0) 编辑

2020年10月9日

摘要: >>> ord('\u2019')8217>>> chr(8217)'’' >>> ord("'")39>>> chr(39)"'" >>> ord('中')20013>>> chr(20013)'中' 阅读全文
posted @ 2020-10-09 08:01 ZhangZhihuiAAA 阅读(213) 评论(0) 推荐(0) 编辑

2020年9月29日

摘要: Error: Invalid agent type "docker" specified. You have to install 2 plugins: Docker plugin and Docker Pipeline plugin. 阅读全文
posted @ 2020-09-29 09:54 ZhangZhihuiAAA 阅读(2343) 评论(0) 推荐(0) 编辑

2020年9月28日

摘要: First make sure you have openssh-server and openssh-client installed on your machines. Lacking of openssh-server on remote machine will cause 'ssh: co 阅读全文
posted @ 2020-09-28 15:22 ZhangZhihuiAAA 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 78 下一页