Question
In November 2021, who has been appointed as the CEO of
the International Cricket Council?Solution
Australian Geoff Allardice has been appointed as permanent CEO of the International Cricket Council. Allardice thus replaced Manu Sawhney, who had resigned from his position in July.
What does the #!/bin/bash line at the beginning of a shell script indicate?
Which command is used to display all currently running processes in Linux?
How can you make a shell script executable?
Which construct allows embedding a block of text in shell scripts as input?
In shell scripting, which command is used to read input from the user?
Which character is used to denote a single-line comment in a shell script?
What does #!/bin/bash at the start of a script mean?
Extended globbing in bash allows:
In Bash, which syntax is used for arithmetic expansion?
What will be the output of the following script snippet?
  for item in Apple Banana Cherry; do
 echo $item
done