2
0
Fork 0
mirror of https://github.com/Idnan/bash-guide.git synced 2018-11-09 02:29:39 +01:00

Fix uniq example

fix for [issue](https://github.com/Idnan/bash-guide/issues/6)
This commit is contained in:
Adnan Ahmed 2017-04-02 11:12:51 +04:00 committed by GitHub
parent 83485f4147
commit cc0e189d31

View file

@ -395,11 +395,8 @@ sort example.txt | uniq
```bash
a
b
a
b
c
d
c
```
*show the unique items for each line, and tell me how many instances it found*