Add command for system

Display file status (access, modify and change time) of a file using `stat`
This commit is contained in:
Bonnie I-Man Ng
2019-05-16 12:02:20 +08:00
committed by GitHub
parent a3f07d0c75
commit 7910b94f25

View File

@ -1271,6 +1271,10 @@ chroot /home/newroot /bin/bash
# To exit chroot
exit
```
##### Display file status (size; access, modify and change time, etc) of a file (e.g. filename.txt)
```bash
stat filename.txt
```
##### Snapshot of the current processes
```bash