Run the following commands on one command line so that they do not terminate when you logout. What command line did you use?
find / -inum 23476 -print > all.links.hard 2> /dev/null
find / -name foo -print > foo.paths 2> /dev/null
The following command can be used to perform the task.
nohup find / -inum 23476 -print > all.links.hard 2> /dev/null ; find / -name foo -print > foo.paths 2> /dev/null &
Computer Science & Information Technology
You might also like to view...
Many Microsoft programs display a(n) ________ Toolbar with Save, Undo, and Redo buttons
A) Mini B) Quick Access C) Shortcut D) Action
Computer Science & Information Technology
Re-formatting information so that it can be edited more quickly or placed into a table is a common use for what?
A) Find and Replace B) Section breaks C) Headers D) Converting text to tables
Computer Science & Information Technology