QUESTION 8 #!/bin/bash A=B B=5 B= ((B+1)) let $A=2 echo $B What is the output from this script? (put ERROR if it fails)
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
QUESTION 8 #!/bin/bash A=B B=5 B= ((B+1)) let $A=2 echo $B What is the output from this script? (put ERROR if it fails)
QUESTION 8 #!/bin/bash A=B B=5 B= ((B+1)) let $A=2 echo $B What is the output from this script? (put ERROR if it fails) QUESTION 9 echo abc | grep -E '^[^xyz][ab][a-z]$' Match No Match Error