「Linux入門」catコマンドの使い方

2018年12月19日

1.複数のファイルを連結する
書式
cat file_name1 file_name2
例 cat 001.txt 002.txt

2.連結した内容を保存
書式
cat file_name1 file_name2 >file_name3
例 cat 001.txt 002.txt >003.txt

3.ファイル作成
書式
cat > new_filename
例 cat > 001.txt

4.文字列を含む行を件数
書式
cat file_name | grep search_word


cat 001.txt | grep “information"

Linux

Posted by arkgame