fork download
  1. #!/bin/bash
  2.  
  3.  
  4. ARG2='OHMS'
  5. if [[ ${ARG2,,} == "ohms" ]]; then
  6. echo YES;
  7. fi
Success #stdin #stdout 0s 19632KB
stdin
Standard input is empty
stdout
YES