Setting up Dokku with DigitalOcean and Namecheap
..or how I made my own heroku in a few hours for $3.98.
| # Usage: git total [OPTION...] | |
| # | |
| # Options: | |
| # | |
| # In theory, the command accepts all command line options supported by | |
| # the "git log" command. In reality, however, only few commit-limiting | |
| # options are useful. This includes: | |
| # | |
| # --author=PATTERN, --committer=PATTERN | |
| # Displays the number of lines changed by a certain author. |
| #!/bin/sh | |
| command="${*}" | |
| printf "Initialized REPL for `%s`\n" "$command" | |
| printf "%s> " "$command" | |
| read -r input | |
| while [ "$input" != "" ]; | |
| do | |
| eval "$command $input" | |
| printf "%s> " "$command" |