add others

cut the last column
This commit is contained in:
onceupon 2017-10-02 12:06:47 +08:00 committed by GitHub
parent 9ff923bd6c
commit 07f29055e9

View File

@ -1562,6 +1562,10 @@ Move up/down with the arrow keys (↑ and ↓).
nl
e.g. cat filename|cut -f2|nl
```
##### Cut the last column
```bash
cat filename|rev|cut -f1|rev
```
## System