-- Leo's gemini proxy

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

-- Connected

-- Sending request

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

typeset


> Declare variables and give them attributes.

More information.


Declare a string variable with the specified value:

typeset {variable}="{value}"

Declare an integer variable with the specified value:

typeset -i {variable}="{value}"

Declare an array variable with the specified value:

typeset {variable}=({item_a item_b item_c})

Declare an associative array variable with the specified value:

typeset -A {variable}=({[key_a]=item_a [key_b]=item_b [key_c]=item_c})

Declare a readonly variable with the specified value:

typeset -r {variable}="{value}"

Declare a global variable within a function with the specified value:

typeset -g {variable}="{value}"


> 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 Tue May 21 06:57:31 2024