fork download
  1. #!/bin/bash
  2. # Show the length of a variable.
  3. a='Hello World'
  4. echo ${#a} # 11
  5. b=4953
  6. echo ${#b} # 4
Success #stdin #stdout 0s 4484KB
stdin
Standard input is empty
stdout
11
4