add others

view first nth characters of a file
This commit is contained in:
onceupon 2017-01-18 17:52:44 +08:00 committed by GitHub
parent f29105585c
commit c0619def87

View File

@ -1262,7 +1262,10 @@ echo -e 'text here \c'
```bash
echo $?
```
#####view first 50 characters of file
```bash
head -c 50 file
```
##System