Skip to content

Instantly share code, notes, and snippets.

@activedecay
Created January 14, 2019 01:01
Show Gist options
  • Save activedecay/142abd9838f5f06542027844057fa0d7 to your computer and use it in GitHub Desktop.
Save activedecay/142abd9838f5f06542027844057fa0d7 to your computer and use it in GitHub Desktop.
input from users until ctrl-c
#!/usr/bin/env bash
while read -p "in >" line; do
echo line was ${line}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment