Skip to content

Instantly share code, notes, and snippets.

@zaydek-old
Created March 13, 2017 17:04
Show Gist options
  • Save zaydek-old/d5a813d429a2a8a0ec81d79f3abd2a09 to your computer and use it in GitHub Desktop.
Save zaydek-old/d5a813d429a2a8a0ec81d79f3abd2a09 to your computer and use it in GitHub Desktop.
#!/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