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

101をとってからもう半年がたった今、ようやく102の学習を始めることにしたのでメモを残していくことにした。
まずは102に入る前にほとんど忘れたであろう、101の復習を軽く行った。

##基本のファイル操作コマンド
###ls
基本的にディレクトリの中身やファイルの属性を見るコマンド
-l 詳細情報を表示
-i iノード番号を表示

###cp
ファイルやディレクトリのコピー
-f 上書きの確認なし
-i 上書きの確認あり
-r 再帰的に行う
-f 所有者、所有グループ、アクセス権、タイムスタンプを含めたファイルのコピー

###tr [option] X Y
文字列の変換、削除
-d Xにマッチした文字列削除
クラスを使った変換も行える

###wc
行数、単語数、文字数を表示
-c 文字数(バイト)
-l 行数
-w 単語数

###grep
文字列の検索
-c マッチした行の行数を表示
-f 検索パターンをファイルから読み込む
-i 大文字小文字の区別なし
-n 検索結果と行番号を表示
-v マッチしない行
-E 拡張正規表現

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?