ファイルの基本的な操作

  1. はじめに

    ファイルの操作を行うshellのコマンドには以下のものがあります。CUIに興味のある人には言わずもがなですが。次の10個のコマンドが使えれば不自由はしないでしょう。

  2. ファイルを作成する
    $ echo 'hello, world' > file

    $ touch file

  3. ファイルを削除する
    $ rm file

  4. ファイルをコピーする
    $ cp file1 file2

  5. ファイル名を変更する
    $ mv file1 file2

  6. ファイルを他のディレクトリーへ移す
    $ mv file directory/

  7. 2つのファイルを結合する
    $ cat file1 file2 > file3

  8. ファイルの内容を表示する
    $ cat file または

    $ less file

  9. ディレクトリーを作成する
    $ mkdir directory

  10. 空のディレクトリーを削除する
    $ rmdir directory

  11. ファイルごとディレクトリーを削除する
    $ rm -fr directory

目次へ戻る