QUESTION 24 #!/bin/bash echo 34-123 | sed -r 's/([0-9])-([0-9])/\2-\1/' What is the output from the sed command in this
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
QUESTION 24 #!/bin/bash echo 34-123 | sed -r 's/([0-9])-([0-9])/\2-\1/' What is the output from the sed command in this
QUESTION 24 #!/bin/bash echo 34-123 | sed -r 's/([0-9])-([0-9])/\2-\1/' What is the output from the sed command in this script (careful -- tricky)? QUESTION 25 For the command read A B C, if we type ONE TWO THREE FOUR FIVE, what is the value of C? O THREE FOUR FIVE THREE FIVE Error Blank