ZhangZhihui's Blog |
|
||
2022年6月14日
摘要:
阅读全文
2022年6月13日
摘要:
git branch: -u, --set-upstream-to <upstream> -M move/rename a branch, even if target exists git push: -u, --set-upstream set upstream for git pull/sta 阅读全文
2022年6月6日
摘要:
不勾选“显示搜索突出显示”即可。 阅读全文
2022年6月5日
摘要:
>>> int('101', 2)5 阅读全文
2022年5月15日
摘要:
zzh@ZZHPC:~$ echo $a zzh@ZZHPC:~$ a=111 zzh@ZZHPC:~$ a=${a:-aaa} zzh@ZZHPC:~$ echo $a 111 zzh@ZZHPC:~$ echo $b zzh@ZZHPC:~$ b=${b:-bbb} zzh@ZZHPC:~$ e 阅读全文
2022年4月26日
摘要:
2022-04-26 11:27PM [scnzzh:/home/scnzzh/aaa]$>find -P /home/scnzzh/aaa/prf_dashboard -maxdepth 2 -name "profile_qlikreporting_data_*_*.tar.gz" /home/s 阅读全文
2022年4月14日
摘要:
Note: For a POSIX-compliant solution, see this answer. ${BASH_SOURCE[0]} (or, more simply, $BASH_SOURCE[1] ) contains the (potentially relative) path 阅读全文
2022年4月13日
摘要:
2022-04-12 11:14PM [/home/zzh/aaa]$>lh total 8.0K -rw-rw-r-- 1 zzh users 0 Apr 12 05:08 c.txt -rw-rw-r-- 1 zzh users 0 Apr 12 05:08 b.txt -rw-rw-r-- 1 阅读全文
2022年4月1日
摘要:
>>> a = ['a', 'b', 'c'] >>> cmd = 'a.pop()' >>> exec(cmd) >>> a ['a', 'b'] >>> cmd = 'c = a.pop()' >>> exec(cmd) >>> c 'b' 阅读全文
2022年3月30日
摘要:
>>> ord('a') 97 >>> chr(97) 'a' >>> chr(ord('a') + 3) 'd' >>> 阅读全文
|
Copyright © 2024 ZhangZhihuiAAA
Powered by .NET 9.0 on Kubernetes |