superFatDu / blogComments

0 stars 0 forks source link

Linux基础知识 | cheng5.du #36

Open superFatDu opened 3 years ago

superFatDu commented 3 years ago

https://www.duchengwu.top/2020/10/28/Linux%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/

Hexo Theme Keep

superFatDu commented 3 years ago
cat
// 查看文件
$ cat file.js

//  创建文件
$ cat > file.js

// 复制文件
$ cat file1.js > file2.js
head

默认输出文件的前10行

// n行
$ head -20 file.js
tail

默认输出文件的最后10行

// n行
$ tail -20 file.js