jobs, jstack, kill, killall: add more information link (#6545)

beep
lincc 2021-09-19 07:10:50 +08:00 committed by GitHub
parent 442a013cb8
commit 0e7393b78f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,7 @@
> Envia um sinal para um processo, geralmente para finalizar o processo.
> Todos os sinais exceto pelo SIGKILL e SIGSTOP podem ser interceptados pelo processo para finalizar de forma limpa.
> Mais informações: <https://manned.org/kill>.
- Finaliza um programa usando o sinal default SIGTERM (terminate):

View File

@ -1,6 +1,7 @@
# jobs
> Display status of jobs in the current session.
> More information: <https://manned.org/jobs>.
- Show status of all jobs:

View File

@ -1,6 +1,7 @@
# jstack
> Java Stack Trace Tool.
> More information: <https://manned.org/jstack>.
- Print Java stack traces for all threads in a Java process:

View File

@ -2,6 +2,7 @@
> Sends a signal to a process, usually related to stopping the process.
> All signals except for SIGKILL and SIGSTOP can be intercepted by the process to perform a clean exit.
> More information: <https://manned.org/kill>.
- Terminate a program using the default SIGTERM (terminate) signal:

View File

@ -2,6 +2,7 @@
> Send kill signal to all instances of a process by name (must be exact name).
> All signals except SIGKILL and SIGSTOP can be intercepted by the process, allowing a clean exit.
> More information: <https://manned.org/killall>.
- Terminate a process using the default SIGTERM (terminate) signal: