2016年5月10日 星期二

升級oh-my-zsh後,執行sudo su - 會出現compdef: unknown....

compdef: unknown command or service: git 
compdef: unknown command or service: grep 
compdef: unknown command or service: git
 
原因:權限問題
解法:
#This will perform chmod g-w for each file returned by compaudit to remove write access for group compaudit | xargs -I % chmod g-w "%" #This will perform chown to current user (Windows and Linux) for each file returned by compaudit compaudit | xargs -I % chown $USER "%" #Remove all dump files (which normally speed up initialization) rm ~/.zcompdump* #Regenerate completions file compinit

沒有留言:

Obsidian 插件介紹:Text Generator

Text Generator 是 Obsidian 的一個插件,它可以根據給定的提示自動生成文本。這個插件使用 GPT-3 語言模型,能夠產生類似人類的文本,非常適合編寫故事、文章、電子郵件和其他類型文本。 主要功能: **生成文本:**根據提示生成各種長度的...