zsh

    1熱度

    1回答

    因此,我遇到了一些我無法解釋的非常奇怪的行爲。我最近跳上了tmux的潮流,並設置了我的shell配置,以便在打開終端窗口時自動啓動tmux。大約在同一時間,我開始了一個bug,在那裏打開一個新的終端會話會正確啓動TMUX但隨後顯示: zsh-newuser-install: startup files exist, aborting. Use the argument -f if you wa

    0熱度

    1回答

    ✗ source <(npm completion) ✗ npm run [press tab] _bash_complete:8: bad math expression: operator expected at `QIPREFIX +...' _files:10: bad output format specification _files:20: bad output format

    2熱度

    1回答

    我正在嘗試grep對另一個文件的文件;但是,我在一行上遇到多個條目時遇到問題。 這是我設置的一個簡單的例子: grep -of <(echo "VHDL\nC++\nHello") <(echo "C++ VHDL") 其輸出 VHDL 當我試圖得到它的輸出 C++ VHDL 感謝。 編輯:我使用的是BSD grep,而不是GNU grep,它按需要工作。

    0熱度

    2回答

    我目前在Mac上使用超級終端,但此問題也適用於其他類型的終端,例如, iTerm 如何將終端標題從[email protected]:~更改爲~或zsh。 目前我的shell是zsh,安裝了oh-my-zsh。我不想通過電力線或主題尋找解決方法。 獎勵題: 你如何重新運行echo -n -e "\033]0;SERVER\007"後回來?

    3熱度

    1回答

    我有一個java cli,要求用戶通過y或n。我必須這樣做大約一千次,CLI中的所有支持都沒有。我如何自動將y傳遞給此cli? 例子: $ ./command-to-run do you want to delete x? (y/N) y do you want to delete x1? (y/N) y do you want to delete x2? (y/N) y . . do

    0熱度

    1回答

    我需要在macOS zshell中具有等效命令rhash -M Filename.jpg。上述命令在ubuntu 16.04中工作,但如果我在zsh中嘗試相同的命令。它給我錯誤zsh: command not found: rhash。任何幫助表示讚賞。

    1熱度

    1回答

    我使用Zsh與iTerm2並試圖按照these instructions刪除我不小心推到回購的提交(不要擔心,它沒有任何追隨者比我) 。 運行命令 git push -f origin HEAD^:develop 導致巖組錯誤 error: src refspec HEADER does not match any. error: failed to push some refs to '[

    0熱度

    2回答

    某些命令以某種方式操縱環境,然後調用另一個命令。例如,xargs <command> <args>通過標準輸入接受參數並將它們附加到參數列表的末尾,然後使用這些參數運行<command>。 另外,我可以在我的zsh配置中定義別名。例如, alias ll='ls -al' 意味着我可以在命令行鍵入ll和ZSH將展開到ls -al。 但是,我不能將兩者結合使用。如果我寫echo Document

    0熱度

    1回答

    find dev-other -iname '*.flac' -exec echo {} \; -exec echo "$(ls -p backgrounds | grep -v/| gshuf -n 1)" \; 我希望看到一個.flac文件的名稱,然後從./backgrounds的文件之一的隨機名稱。 相反,我看到這一點: dev-other/4515/11057/4515-11057-0

    0熱度

    1回答

    我一直想: find dev-other -name '*.flac' -type f -exec echo $(echo {} | sed 's,^[^/]*/,,') \; 我希望看到的路徑列表來.flac文件中dev-other,但沒有前置dev-other/,如: 4515/11057/4515-11057-0095.flac 4515/11057/4515-11057-0083.f