Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
実際に端末を開くと、次のデフォルト文字列が表示されます。 username@hostname:~
username@hostname:~
上記の文字列を次の文字列に置き換えたい: <myprgrogram>:~
<myprgrogram>:~
これどうやってするの? 私は GNU/Linux で C で開発しています)。 前もって感謝します!
You need to set up your prompt as detailed here (I'm assuming you're using bash).
bash
There are numerous options and capabilities. See here for a gallery of examples.
標準ライブラリ (stdlib.h) の setenv/putenv を使用して環境変数を変更できます。「man setenv」を参照してください。ただし、プログラムが終了すると、変数は保存されません。
現在のパスを意味する場合は、以下の行を.bashrcファイルに追加してください。
.bashrc
export PS1='<$PWD>:'