-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

trap


> Automatically execute commands after receiving signals by processes or the operating system.

> Can be used to perform cleanups for interruptions by the user or other actions.

More information.


List available signals to set traps for:

trap -l

List active traps for the current shell:

trap -p

Set a trap to execute commands when one or more signals are detected:

trap 'echo "Caught signal {SIGHUP}"' {SIGHUP}

Remove active traps:

trap - {SIGHUP} {SIGINT}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 19:49:41 2024