それマグで!

知識はカップより、マグでゆっくり頂きます。 takuya_1stのブログ

習慣に早くから配慮した者は、 おそらく人生の実りも大きい。

bashの基本をおさらいしてみる。

Linux使うのは3年ぶりなので、すっかり錆付いてる。


@ITbash使いこなし

tabで補完

当たり前だけど。[tab]でコマンド、引数、パスを補完できる。

$>apt[tab]
apt-cache             apt-ftparchive        apt-sortpkgs
apt-cdrom             apt-get               aptitude
apt-config            apt-key               
apt-extracttemplates  apt-mark              

! [digit] でHistoryを実行

$>history 
$>! 102

カーソルキー

cmd.exeでHOMEキーやENDキーをの代用に。

行頭に移動 [Ctrl]+[A]
行末に移動 [Ctrl]+[E]
1文字左に移動 [Ctrl]+[B]
1文字右に移動 [Ctrl]+[F]
1単語左に移動 [ESC]+[B]
1単語右に移動 [ESC]+[F]
1文字削除 [Ctrl]+[D]、[Ctrl]+[H]

bashがぁぁぁっ

動作が変になったときは、設定ファイルをロードしてみる

$>source /etc/profile
$>source ~/.bash_profile
$>source ~/.bash_login
$>source ~/.profile
$>source ~./.bashrc

などを試してみる。