Based on the tutorial from Hacking-Lab.
See bash-scripting-tutorial for reference.
have a look at the seperating-commands.sh script.
for f in $(find ./bash-scripting-tutorial -name "*.sh" -printf "%f\n"); do touch ./bash-scripting/$f; done
for f in $(find ./bash-scripting -name "*.sh" -printf "%f\n"); do echo '#!/bin/bash' > .bash-scripting/$f; done