mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 00:41:42 +00:00
34 lines
894 B
Plaintext
34 lines
894 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# declare
|
|
|
|
> Declare variables and give them attributes.
|
|
> More information: <https://www.gnu.org/software/bash/manual/bash.html#Bash-Builtins>.
|
|
|
|
- Declare a string variable with the specified value:
|
|
|
|
`declare {{variable}}="{{value}}"`
|
|
|
|
- Declare an integer variable with the specified value:
|
|
|
|
`declare -i {{variable}}="{{value}}"`
|
|
|
|
- Declare an array variable with the specified value:
|
|
|
|
`declare -a {{variable}}=({{item_a item_b item_c}})`
|
|
|
|
- Declare an associative array variable with the specified value:
|
|
|
|
`declare -A {{variable}}=({{[key_a]=item_a [key_b]=item_b [key_c]=item_c}})`
|
|
|
|
- Declare a readonly string variable with the specified value:
|
|
|
|
`declare -r {{variable}}="{{value}}"`
|
|
|
|
- Declare a global variable within a function with the specified value:
|
|
|
|
`declare -g {{variable}}="{{value}}"`
|