https://www.humblebundle.com/books/unix-linux-books?partner=ggcp
แพ็คใหม่จาก Humble นะครัช ครั้งนี้คือ UNIX & LINUX by O'REILLY รายละเอียดมีดังนี้
.
จ่าย $1 รับ
Classic Shell Scripting
Linux Device Drivers
Introducing Regular Expressions
grep Pocket Reference
Unix Power Tools
.
จ่าย $10 รับเพิ่ม
Learning the Bash Shell
Learning the vi and Vim Editors
Linux in a Nutshell
sed & awk
Linux System Programming
.
จ่าย $18 รับเพิ่ม
bash Cookbook
Linux Observability with BPF
Mastering Regular Expressions
Effective awk Programming
Linux Pocket Guide
Cybersecurity Ops with bash
.
รายละเอียดเพิ่มเติมดูที่หน้าร้านค้า
https://www.humblebundle.com/books/unix-linux-books?partner=ggcp
.
ดีลนี้หมดเวลาในอีก 20 วันกว่าๆ
.
ถึงหน้าปกจะดูเหมือนสารคดีสัตว์โลก แต่แพ็คนี้ก็รวม eBook (แน่นอนว่าภาษาอังกฤษล้วน) ที่เกี่ยวข้องกับ Unix และ Linux ล้วนๆ ใครทำงานด้านนี้ต้องการหนังสือไปเพิ่มพูนความรู้ก็จัดกันไป
-------------------------------
GGKeyStore.com ร้านขาย Steam Wallet, เกม Steam, Xbox Pass, PSN ไทย, ไอดีเกมมือถือ, Pokemon TCGO ราคาถูก รับของทันที
-------------------------------
Battlefield V (Origin) แจกฟรีสำหรับสมาชิก Prime Gaming ดูวิธีรับที่นี่ - https://bit.ly/3Cn4urT
「grep -v grep」的推薦目錄:
- 關於grep -v grep 在 เกมถูกบอกด้วย v.2 Facebook 的精選貼文
- 關於grep -v grep 在 Kewang 的資訊進化論 Facebook 的最佳解答
- 關於grep -v grep 在 grep 遇到binary file (standard input) matches 解決方法 的評價
- 關於grep -v grep 在 grepping using the result of previous grep - linux - Stack ... 的評價
- 關於grep -v grep 在 saorisakaue/GREP - Genome for REPositioning drugs - GitHub 的評價
grep -v grep 在 Kewang 的資訊進化論 Facebook 的最佳解答
小編最近工作上遇到了大 git repo 的問題,因為 repo 的 history 殘留了許多不必要的內容,像是 logback 的 log、可執行的 jar 檔、測試用的圖檔...等,所以現在的 repo 已經大到 630MB,小編就使用 bfg 將 repo 縮小到只剩 30 MB 左右。
會發現這件事是因為最近在 Jenkins 上面 build 的時候,clone 的時間都花超久,後來才發現原來 repo 太大了 Orz,大家記得不必要的檔案要刪除啊。
執行步驟如下:
1. 下載 bfg
2. 列出檔案最大的前 n 名:git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -50 | awk '{print$1}')"
3. 操作 bare repo:git clone --mirror git://example.com/some-big-repo.git,因為 bfg 會直接操作 bare repo
4. 刪除大檔:bfg --delete-files big-file-*.* some-big-repo.git
5. 壓縮 repo:git reflog expire --expire=now --all && git gc --prune=now --aggressive
6. 上傳回 remote repo:git push
7. 記得請其他開發者先備份 local repo,然後重新 clone 一次 repo。注意:千萬別直接 pull,然後又 push,因為這樣做的話就會把 local repo 的 history 又 push 一次了,這樣子前面的動作就完全沒有用。所以全部的開發者都要重新 clone
8. 快快樂樂使用 repo
BFG Repo-Cleaner:https://rtyley.github.io/bfg-repo-cleaner/
#git #bfg
grep -v grep 在 grepping using the result of previous grep - linux - Stack ... 的推薦與評價
... <看更多>
相關內容
-
grep AND Operations - linux - Stack Overflow
-
How do I recursively grep all directories and subdirectories?
-
What's the differences between grep '\$' and grep "\$"? - Stack ...
-
Colorized grep -- viewing the entire file with highlighted matches
-
stackoverflow.com 的其他相關資訊
-
grep AND Operations - linux - Stack Overflow
-
How do I recursively grep all directories and subdirectories?
-
What's the differences between grep '\$' and grep "\$"? - Stack ...
-
Colorized grep -- viewing the entire file with highlighted matches
-
stackoverflow.com 的其他相關資訊
grep -v grep 在 saorisakaue/GREP - Genome for REPositioning drugs - GitHub 的推薦與評價
0.0. GREP can quantify an enrichment of the user-defined set of genes in the target of clinical indication categories and capture potentially repositionable ... ... <看更多>
grep -v grep 在 grep 遇到binary file (standard input) matches 解決方法 的推薦與評價
本篇ShengYu 紀錄使用grep 遇到binary file (standard input) matches 的解決方法,某天使用grep 時出現了Binary file (standard input) matches 這樣 ... ... <看更多>