ZhangZhihui's Blog  
上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 78 下一页

2022年6月14日

摘要: 阅读全文
posted @ 2022-06-14 09:55 ZhangZhihuiAAA 阅读(38) 评论(0) 推荐(0) 编辑

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 阅读全文
posted @ 2022-06-13 12:23 ZhangZhihuiAAA 阅读(19) 评论(0) 推荐(0) 编辑

2022年6月6日

摘要: 不勾选“显示搜索突出显示”即可。 阅读全文
posted @ 2022-06-06 09:04 ZhangZhihuiAAA 阅读(260) 评论(0) 推荐(0) 编辑

2022年6月5日

摘要: >>> int('101', 2)5 阅读全文
posted @ 2022-06-05 21:33 ZhangZhihuiAAA 阅读(34) 评论(0) 推荐(0) 编辑

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 阅读全文
posted @ 2022-05-15 22:17 ZhangZhihuiAAA 阅读(18) 评论(0) 推荐(0) 编辑

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 阅读全文
posted @ 2022-04-26 11:26 ZhangZhihuiAAA 阅读(170) 评论(0) 推荐(0) 编辑

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 阅读全文
posted @ 2022-04-14 09:36 ZhangZhihuiAAA 阅读(49) 评论(0) 推荐(0) 编辑

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 阅读全文
posted @ 2022-04-13 11:20 ZhangZhihuiAAA 阅读(18) 评论(0) 推荐(0) 编辑

2022年4月1日

摘要: >>> a = ['a', 'b', 'c'] >>> cmd = 'a.pop()' >>> exec(cmd) >>> a ['a', 'b'] >>> cmd = 'c = a.pop()' >>> exec(cmd) >>> c 'b' 阅读全文
posted @ 2022-04-01 23:18 ZhangZhihuiAAA 阅读(23) 评论(0) 推荐(0) 编辑

2022年3月30日

摘要: >>> ord('a') 97 >>> chr(97) 'a' >>> chr(ord('a') + 3) 'd' >>> 阅读全文
posted @ 2022-03-30 16:47 ZhangZhihuiAAA 阅读(47) 评论(0) 推荐(0) 编辑
上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 78 下一页