ZhangZhihui's Blog |
|
||
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 阅读全文
摘要:
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 阅读全文
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 阅读全文
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 阅读全文
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 阅读全文
摘要:
scnzzh@ZUBT1:~$ sudo gpasswd -d root docker Removing user root from group docker scnzzh@ZUBT1:~$ sudo usermod -aG docker scnzzh scnzzh@ZUBT1:~$ groups 阅读全文
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 阅读全文
2020年10月9日
摘要:
>>> ord('\u2019')8217>>> chr(8217)'’' >>> ord("'")39>>> chr(39)"'" >>> ord('中')20013>>> chr(20013)'中' 阅读全文
2020年9月29日
摘要:
Error: Invalid agent type "docker" specified. You have to install 2 plugins: Docker plugin and Docker Pipeline plugin. 阅读全文
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 阅读全文
|
Copyright © 2024 ZhangZhihuiAAA
Powered by .NET 9.0 on Kubernetes |