Bash Scripting - Basics
Given the script
What is the output when run as
count.sh:#!/bin/bash
for i in {1..3}; do
echo $i
doneWhat is the output when run as
./count.sh?count.sh:#!/bin/bash
for i in {1..3}; do
echo $i
done./count.sh?15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions