I want to get the size of each specified directory after running some commands. For example, I want to clean all the cache in /var using
/var
/var : sudo yum clean all
Then, get the size of the following directories:
/var /boot /opt
I can write for example the following:
sudo du -sh /var sudo du -sh /boot sudo du -sh /opt
But I want to merge them in one command " sudo du". Is that possible? Then I want to merge it with the "yum clean all" command.
Is there a good practice to do it? I'm new to Unix.
You can specify multiple directories with du and so do:
sudo yum clean all && sudo du -sh /var /boot /opt
You run with one sudo operation:
sudo sh -c "yum clean all && du -sh /var /boot /opt"
2.1m questions
2.1m answers
60 comments
57.0k users