Skip to main content
added 134 characters in body
Source Link

Easiest way

#!/bin/bash
for i
do
 echo $i
done

and run

./a.sh personality brave selfish

and here is the print on the stdout

personality
brave
selfish

Easiest way

#!/bin/bash
for i
do
 echo $i
done

Easiest way

#!/bin/bash
for i
do
 echo $i
done

and run

./a.sh personality brave selfish

and here is the print on the stdout

personality
brave
selfish
Source Link

Easiest way

#!/bin/bash
for i
do
 echo $i
done