mirror of
https://github.com/onceupon/Bash-Oneliner
synced 2024-11-22 20:54:19 +00:00
Add command for system
Display file status (access, modify and change time) of a file using `stat`
This commit is contained in:
parent
a3f07d0c75
commit
7910b94f25
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue