Initial commit

This commit is contained in:
2023-04-18 21:30:43 +02:00
commit 8a54eb45e8
32 changed files with 3636 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
NUM=$1
ans=""
[ $(( NUM % 3 )) -eq 0 ] && ans+="Pling"
[ $(( NUM % 5 )) -eq 0 ] && ans+="Plang"
[ $(( NUM % 7 )) -eq 0 ] && ans+="Plong"
if [[ $ans == "" ]]; then
echo $1
else
echo $ans
fi