Skip to main content
minor code formatting
Source Link
oHo
  • 53.5k
  • 27
  • 170
  • 203

In bash 4 you can use typeset

Example: A="HELLO WORLD" typeset -l A=$A

A="HELLO WORLD"
typeset -l A=$A

In bash 4 you can use typeset

Example: A="HELLO WORLD" typeset -l A=$A

In bash 4 you can use typeset

Example:

A="HELLO WORLD"
typeset -l A=$A
Source Link
c4f4t0r
  • 1.6k
  • 16
  • 25

In bash 4 you can use typeset

Example: A="HELLO WORLD" typeset -l A=$A