Write a bash script that takes a number as an argument and converts it into its corresponding raindrop sounds based on the following rules:
- If the number is divisible by 3, add “Pling” to the result.
- If the number is divisible by 5, add “Plang” to the result.
- If the number is divisible by 7, add “Plong” to the result.
- If the number is not divisible by 3, 5, or 7, the result should be the number as a string.
Example Output:
$ ./raindrop_sounds.sh 28
Plong
$ ./raindrop_sounds.sh 30
PlingPlang
$ ./raindrop_sounds.sh 34
34