Na przykład:
[root@ip-10-0-7-125 ~]# history | grep free
594 free -m
634 free -m | xargs | awk '{print "free/total memory" $17 " / " $ 8}'
635 free -m
636 free -m | xargs | awk '{print "free/total memory" $9 " / " $ 10}'
736 df -h | xargs | awk '{print "free/total disk: " $11 " / " $9}'
740 df -h | xargs | awk '{print "free/total disk: " $11 " / " $8}'
741 free -m | xargs | awk '{print "free/total memory: " $17 " / " $8 " MB"}'
Zastanawiam się tylko, czy jest jakiś sposób na wykonanie polecenia 636 bez ponownego wpisywania, wystarczy wpisać coś plus liczbę, na przykład historię 636 lub coś takiego.
ctrl-r
?