Update README.md

This commit is contained in:
2024-03-10 21:41:30 +00:00
parent baeabe4894
commit 5269e119d4

View File

@@ -15,6 +15,23 @@ hostname
sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y
```
## ls
List information about the FILEs (the current directory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.
```bash
#order by date
ls -t
#order by date reverse
ls -r
```
source: man
## Users
```bash