What is a tty under Linux / UNIX? How do I find out what tty I’m on?
{ 0 comments }
I type the following command:
ps -auxf | sort -nr -k 4 | head -10
And I get the output along with warning message:
Warning: bad syntax, perhaps a bogus ‘-’? See /usr/share/doc/procps-3.2.7/FAQ
How do I fix this problem?
{ 0 comments }
Q. I’d like to run a command or shell script immune to hangups, with output to a non-tty or file. How do I use nohup command to run script called ~/utils/backup upload? A. nohup is a Unix command that is used to run another command while suppressing the action of the HUP (hangup) signal, enabling [...]
{ 0 comments }