If the troubleshooting guide and searching reported issues didn't help, please run imgur-screenshot
with --debug
as the first option in your terminal and paste the output in your issue.
Make sure to remove all credentials before pasting!
Please include as many details as possible, so I can reproduce the problem you're having.
Please try to adopt the code style already in use.
- Indent using 2 spaces
if ...; then
go in the same line- The function definition style is
function_name()
(without thefunction
prefix) - Create global variables in uppercase:
declare -g GLOBAL_VARIABLE
- Create local variables at the function top in lowercase:
local local_variable
- Comment code that isn't obvious
- Lint your code using shellcheck before submitting.