|
|
|
|
|
by goshx
4616 days ago
|
|
When you execute a command that takes a long time to run and you want to send it to the background you can do: ctrl + z then, to send it to the background: bg and, to get it back from the background: fg Also, I really like to use "for", like: // get the size of each file or directory in the current directory for i in `ls -1`; do du -hs $i; done; |
|