Linux Basic 02_Directory

Directoryとは?

  • Directory:Linuxで、ファイルを入れておくことができるオブジェクト。
  • Linuxでは、ディレクトリ構造が木を逆さに立てた逆ツリー構造である。
    そして、最上位のディレクトリは 「/」 である。 これrootと呼ぶ。
    「/root」 はrootアカウントのホームディレクトリであり、異なることを示す。
  • Linux ディレクトリ 区切り文字は 「/」
    Windows フォルダ 区切り文字は 「¥」
    (Windowsは、ドライブにフォルダ構造を持つ。)

Path

  • . : current directory

  • .. : parents directory

  • / : root directory

  • ~ : home directory

  • echo $PATH

Handling Files

  • CREATE : mkdir,
    vi(:w filename),
    cat(ex. cat > filename) ^D(ctrl + D),
    touch(ex. touch filename)
  • COPY : cp
  • REMOVE : rmdir, rm -r
  • MOVE : mv
  • RENAME : rename (ex. rename OldName NewName OldName),
    (ex. mv OldName NewName)

    Option

    • -r : recusive(; include child dir)
    • -i : interactive (ex. rm -i filename) (ex. cp -i SameName SameName)
    • -f : force
You need to set install_url to use ShareThis. Please set it in _config.yml.
You forgot to set the business or currency_code for Paypal. Please set it in _config.yml.

Comments

You forgot to set the shortname for Disqus. Please set it in _config.yml.
You need to set client_id and slot_id to show this AD unit. Please set it in _config.yml.