タグ付けされた質問 「zshrc」

5
パラメータ付きのZSHエイリアス
単純なgitadd / commit / pushのパラメーターを使用してエイリアスを作成しようとしています。 関数をエイリアスとして使用できるのを見たので、試してみましたが、作成しませんでした。 私が持っていた前に: alias gitall="git add . ; git commit -m 'update' ; git push" しかし、私は自分のコミットを変更できるようにしたいです: function gitall() { "git add ." if [$1 != ""] "git commit -m $1" else "git commit -m 'update'" fi "git push" } (私はそれがひどいgitプラクティスであることを知っています)
98 bash  shell  alias  zsh  zshrc 


5
Catalina、Python / Python3、pip / pip3、PATH、zshrcなどでzshを使用する際の問題
最近Catalinaとデフォルトのzshに更新しました。私はおそらく移行中にパスをめちゃくちゃにして、現在Python3.7、pip3、コマンドラインPATHと私のzshrcファイルの場所を整理しようとしています。 / usr / bin、/ usr / local / bin、/ usr / local / Cellar / pythonおよび/Users/[user]/.local/bin内に潜在的に冗長なファイルが含まれているように見えます 以下は、コマンドの複製です。 $ which python3 /usr/bin/python3 $ which python /usr/bin/python $ which pip pip not found $ which pip3 /usr/bin/pip3 $ pip3 -V Traceback (most recent call last): File "/Library/Developer/CommandLineTools/usr/bin/pip3", line 10, in <module> …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.