Tag: shell
All the articles with the tag "shell".
-
查找動態庫(.so) 是否安裝過以及路徑使用 ldconfig
介紹如何使用 ldconfig 搜尋動態函式庫(.so)是否已安裝及其路徑,快速解決編譯時 'cannot open shared object file' 的問題。
-
sudo go: command not found 問題解決
記錄 sudo 環境下出現 'go: command not found' 的原因,以及透過修改 /etc/sudoers 的 secure_path 解決問題的方法。
-
Linux shell 變數相關用法整理(一): assign, echo, export, unset
整理 Linux shell 變數的基本操作,包含宣告、echo 輸出、export 匯出環境變數、unset 刪除等常用指令的語法與注意事項。
-
Linux shell 變數相關用法整理(二): read, declare, array
整理 Linux shell 進階變數操作,介紹 read 讀取使用者輸入、declare 宣告變數型別、array 陣列的使用方式與實際範例。