Linux Command (1)

Table of contents

No heading

No headings in the article.

Ubuntu 22.04

  • ctrl + L クリア

  • ctrl + alt + T ターミナルを開く

  • man man.1 セクション1が表示される

  • [ -a **|** -h ] [ -asdf ] オプション 

  • **<**something**>** 必ず値を記述

  • CommandName **...** 引数(arg)が2つ以上入れられる

  • echo $PATH コマンドの入ったディレクトリを表示

  • history コマンド履歴

  • !1 1番のコマンドラインを再実行

  • !! 前回のコマンドラインを再実行

  • stdin=0, stdout=1, err=2 I/O

  • args スタンダートインプット(stdin)を引数(arg)に変える

  • cat デフォルトでターミナルに入出力

  • ctrl + C 入力をキャンセル

  • date < in.txt > out.txt 2>> error.txt ファイルへI/O

  • date | tee full.txt | cut >today.txt --delimiter " " --fields 1

  • alias すべての設定したコマンドのショートカットアリアスが表示

  • alias cl='clear' アリアス設定

  • cl カスタムコマンド実行