Add pkill -t p1 shortcut; fix a typo:
Submitted by: pav
This commit is contained in:
parent
9c7740b287
commit
9b2e3e1565
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=30318
1 changed files with 4 additions and 2 deletions
|
@ -418,7 +418,7 @@
|
|||
</example>
|
||||
|
||||
<example>
|
||||
<title>Restart an interrupted amd64-5 build witout updating</title>
|
||||
<title>Restart an interrupted amd64-5 build without updating</title>
|
||||
|
||||
<para><command>dopackages.5 amd64 -nocvs -noportscvs -norestr -continue -noindex -noduds -nofinish</command></para>
|
||||
</example>
|
||||
|
@ -524,7 +524,9 @@
|
|||
of &man.tty.1; when you start the build, or use <command>ps x</command>
|
||||
to identify it. You need to make sure that nothing else important
|
||||
is running in this tty, e.g. <command>ps -t p1</command> or whatever.
|
||||
Then either <command>kill -HUP</command> in there by e.g.
|
||||
If there isn't, you can just kill off the whole term easily with
|
||||
<command>pkill -t p1</command>; othewise issue a
|
||||
<command>kill -HUP</command> in there by e.g.
|
||||
<command>ps -t p1 | awk '{print $1}' | xargs kill -HUP</command>. Replace
|
||||
<replaceable>p1</replaceable> by whatever the tty is, of course.</para>
|
||||
|
||||
|
|
Loading…
Reference in a new issue