A process stores its PID number in a file named process.pid. Write a command line that terminates this process.
What will be an ideal response?
The following command terminates the process:
# xargs kill < process.pid
See page 294 for details. Alternately, you can use the following command:
# kill $(cat process.pid)
See page 450 for information on command substitution.
Computer Science & Information Technology
You might also like to view...
With a Windows 8.1 client, 802.1X authentication follows the domain logon, and users are prompted for wireless credentials only if absolutely necessary
Indicate whether the statement is true or false
Computer Science & Information Technology
USB standard that operates at up to 480 Mbps.
A. USB 1.0 B. USB 2.0 C. USB 3.0 D. USB 3.1
Computer Science & Information Technology