test.sh
#!/bin/bash
for skill in Ada Coffe Action Java; do
echo “I am good at ${skill}Script”
done Output
bogon:Desktop macname$ ./test.sh
I am good at AdaScript
I am good at Cof
test.sh
#!/bin/bash
for skill in Ada Coffe Action Java; do
echo “I am good at ${skill}Script”
done Output
bogon:Desktop macname$ ./test.sh
I am good at AdaScript
I am good at Cof