Update README.md

This commit is contained in:
onceupon 2017-11-24 16:50:22 +08:00 committed by GitHub
parent 7d377a534b
commit d9742d8586
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -266,6 +266,13 @@ sed -n '/^@S/p'
```bash
sed '/bbo/d' filename
```
##### Print/get/trim a range of line (e.g. line 500-5000)
```bash
sed -n 500,5000p filename
```
##### Print every nth lines
```bash