ajout awk

This commit is contained in:
2021-04-16 09:48:35 +02:00
parent a54498b097
commit c24a72ec6e

View File

@@ -33,3 +33,8 @@ rajouter la définition de l'alias dans ~/.bashrc
```bash
sed 's/^(#|$|\s+#.*)//g' /etc/profile > profile
```
## Sed
```bash
history | awk '{print $4}' | sort | uniq -c | sort -n
```