6 lines
72 B
Bash
6 lines
72 B
Bash
#!/bin/bash
|
|
|
|
THE_MESSAGE="Shell Scripting is Fun!"
|
|
|
|
echo "$THE_MESSAGE"
|