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.
私は bash に名前を付けていますが、質問は他の Linux シェルにも当てはまります。斜体文字が含まれていない理由はありますか?
とは何の関係もありませんbash。ほとんどの端末アプリケーションは、単に斜体のテキストをサポートしていません。
bash
pangoterm注目すべき例外です:
pangoterm
一部の端末定義が斜体をサポートしていることを確認したい場合 ( stim):
stim
$ for ti in $(find /lib/terminfo /usr/share/terminfo -type f -print); do t=${ti##*/}; if tput -T ${t} stim 2>/dev/null; then echo ${t} "supports italics"; fi; done