In our first tutorial on command line wizardry, we covered simple redirection and the basics of sed, awk, and grep. Today, we’re going to introduce the concepts of simple variable substitution and ...
[user@host ~]$ echo $(echo test) test [user@host ~]$ myhomedirsize=$(du -hs ~) [user@host ~]$ echo $myhomedirsize 33K /home/user I think the main reason is that it is ...