1
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 1 year has passed since last update.

ファイルを操作する

Last updated at Posted at 2023-09-25

ファイルの中身を出力

cat

ファイルの中身を表示しながらスクロースするが、表示は途中で止まらずに行末まで表示するとコマンドが終了する

ファイルの中身をスクロール表示

less

「less」ファイル内容を表示し、スクロールできる

ファイルの作成

touch READ.md
空のファイルが作れる

echo "文字列" > ファイル名
ターミナルからファイルに文字を書き込む

nano ファイル名
テキストエディタを開く

ファイル名の変更

mv 変更前のファイル名 変更後のファイル名

ファイルのコピー

cp コピー元のファイル名 コピーした後のファイル名

ファイルの削除

rm 削除したいファイル名

シンボリックリンク

ln -s 既存のパス名 別名のパス名
ls -l で確認できる 矢印がついていたらOK

ファイルの検索

$ find ファイル名
ファイル名を指定して検索

find 検索対象のディレクトリ/ -type f -exec grep -l "探したい文字列" {} \;

検索する文字列が含まれるファイルを検索する方法

grep [検索したい文字列] -rl [検索対象フォルダのパス]

ファイルを開いた中身に、「○○」という文字列が含まれているファイルのリスト。

検索

echo -e "文字列" > ~/ファイル名
sample.txt に書き込む

grep '^a' ~/sample.txt
sample.txt ファイルから、"a" で始まる単語を検索 

^ テキスト行の先頭
$ テキスト行の終わり
. 任意の 1 文字

1
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
1
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?