0
0

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.

LPICレベル1の学習メモ

Posted at

重い腰を上げてBashについての学習をすることにした

#Bash
##bashの設定ファイル

  • /etc/profille
    • ログイン時に実行されてすべてのユーザから参照される
    • 基本的な環境変数や履歴サイズなどの設定ができる
  • /etc/bash.bashrc
    • bash起動時に実行され、すべてのユーザから参照される
  • /etc/bashrc
    • ~/.bashrcから参照される
  • ~/.bash_profile
    • ログイン時に実行される
  • ~/.bash_login
    • ~/.bash_profileがない場合、ログイン時に使われる
  • ~/.profile
    • ~/.bash_loginも~/.bash_profileもない時に実行される
  • ~/.bashrc
    • bash起動時に実行される
  • ~/.bash_logout
    • ログアウト時に実行される

メモ
/etc以下の設定ファイルは全ユーザに影響を起こす
ホームディレクトリ以下は ユーザごと

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?