Qiita > syntax-highlighting > bashとshell-sessionの違い
3126 ワード
比較1
shell-session
$ ls -lrt
$ history
2052 cd 170722_learn_realm_imagm/
2053 ls
2054 python3 learn_mr_mi_170819.py
bash
$ ls -lrt
$ history
2052 cd 170722_learn_realm_imagm/
2053 ls
2054 python3 learn_mr_mi_170819.py
どちらを使うか?
プレビュー画面では下図のように違いが分かりやすい。
記事になった時点で見やすさが低下しているように思われる。
- コマンドの色がなくなる
- 実行結果の薄色表示がなくなる (shell-session)
- オプションに色がつく
-
-lrt
に目がもってかれる
-
読者の読みやすい書き方:未調査
比較2
keep_env_180106_exec
#!/usr/bin/env bash
addacfg="-grid 32 -eq_rad 4.24478229"
echo $addacfg
上記を実行した場合。
shell-session
$ bash -x keep_env_180106_exec
+ addacfg='-grid 32 -eq_rad 4.24478229'
+ echo -grid 32 -eq_rad 4.24478229
-grid 32 -eq_rad 4.24478229
bash
$ bash -x keep_env_180106_exec
+ addacfg='-grid 32 -eq_rad 4.24478229'
+ echo -grid 32 -eq_rad 4.24478229
-grid 32 -eq_rad 4.24478229
txt
$ bash -x keep_env_180106_exec
+ addacfg='-grid 32 -eq_rad 4.24478229'
+ echo -grid 32 -eq_rad 4.24478229
-grid 32 -eq_rad 4.24478229
Author And Source
この問題について(Qiita > syntax-highlighting > bashとshell-sessionの違い), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/cc4eb54e2f00d5da2dcf著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .