36
34

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【ど忘れシリーズ】llコマンドがcommand not foundになったときの対処法

Last updated at Posted at 2019-11-28

はじめに

[hoge@hoge ~/Documents/hogehoge]$ ll
bash: ll: command not found

新米エンジニア「ファッ!?先輩!!llコマンドが使えません!」
先輩エンジニア「フォッフォッフォ!落ち着くがよい。」

とても便利なllコマンド。
しかし、稀にコマンドを入力しても「そんなコマンドねーよ」と怒られる場合があります。
(私も初めてのころはすごく焦っていました笑)

llコマンドって?

「ls -l」コマンドのショートカット(エイリアス)です。
なので実際にllコマンドは**「ls -l」コマンドと同等のもの**が実行されています。

llコマンド

[hoge@hoge ~/Documents/hogehoge] $ ll
total 0
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_1.txt
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_2.txt
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_3.txt

「ls -l」コマンド

[hoge@hoge ~/Documents/hogehoge] $ ls -l
total 0
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_1.txt
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_2.txt
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_3.txt

どうしたらいいの?

llコマンドが「ls -l」と認識できるようにすればよいので、
.bashrcというファイルに登録すればOKです。手順は次に進んでみてね。

1..bashrcファイルを開きます

[hoge@hoge ~]
$ vi ~/.bashrc

2.下記を追記します

alias ll="ls -l"

これで?

[hoge@hoge ~/Documents/hogehoge]$ ll
total 0
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_1.txt
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_2.txt
-rw-r--r-- 1 hoge 197608 0 11月 28 17:31 hoge_file_3.txt

これでllコマンドで実行できるようになりましたね。

新米エンジニア「先輩!!これで今夜はぐっすり眠れそうです!」
先輩エンジニア「よかったね!おやすみ!」

36
34
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
36
34

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?