Gold Holk

@gholk

Linux user, interested driven web developer.

Joined on Nov 22, 2016

  • bash 是 linux 下最通用的互動式 shell。 在有圖形界面以前,shell 就是 unix 使用者認知中電腦的全部。 本課程將會介紹多種冷門的 bash 使用技巧, 包含迴圈、多工、互動使用技巧、腳本撰寫; 帶領聽眾重新理解 shell 的設計哲學。 其中腳本會以 sh 為主,而互動式技巧則會以 bash 為主。 講者介紹: gholk linux 使用者,興趣使然的 web 開發者。 宣稱只寫 vanilla js ,但其實只是懶得學框架。
     Like  Bookmark
  • 善用 --homedir 或環境變數 GNUPGHOME 來暫存及編輯公鑰,編輯後再匯出只帶有特定 email 的版本。 gpg --armor --export-key $keyid > key-with-origin-uid.asc (umask 700; mkdir workdir) export GNUPGHOME=workdir gpg --import key-with-origin-uid.asc gpg --edit-key $keyid # use adduid to add new email address and name. # use uid to select email.
     Like  Bookmark