Created
March 13, 2017 17:04
-
-
Save zaydek-old/d5a813d429a2a8a0ec81d79f3abd2a09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
owl_sources=("cli" "head" "time" "auth" "repl" "eval" "tail") | |
function owl_create_sources { | |
for owl_source in "${owl_sources[@]}" | |
do | |
printf '#!/bin/bash\n\n' > "owl_"$owl_source".sh" | |
done | |
unset owl_source | |
} | |
function owl_delete_sources { | |
for owl_source in "${owl_sources[@]}" | |
do | |
rm "owl_"$owl_source".sh" | |
done | |
unset owl_source | |
} | |
owl_create_sources |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment