Martin Bagge / brother

Results 42 comments of Martin Bagge / brother

Maybe switch to `DNS_ALL`? https://dustri.org/b/a-short-tale-on-phps-dns_get_record.html > By default, `dns_get_record` will issue a `ANY` query, and this behavior is mentioned in the relevant documentation. > > Apparently, PHP didn't get the...

In bash and dash echo is a builtin. ``` brother ~$ command -v echo echo brother ~$ command -v whoami /usr/bin/whoami ```

Ignore it with a directive, you have evaluated the case and are now ready to continue on.

@JarredAllen and that will take some code in a PR. Very welcome contribution ofc, until then - ignore it.

Hi Turbo! =) When you have reviewed the warnings and debated if you want to change some of them to other solutions that might be better for one reason or...

You can specify severity level to avoid info messages. ``` -S SEVERITY --severity=SEVERITY Minimum severity of errors to consider (error, warning, info, style) ``` Example ``` brother ~$ cat /tmp/test.sh...

You stated > Besides, ShellCheck exits with 1 which makes it look like there is something to worry about not everyone agrees with you on that. and in that casse...

Used Google translate to add English as support. Hopefully correct, it does make sense at least. Google翻訳を使用して、サポートとして英語を追加しました。 うまくいけば、それは少なくとも理にかなっています。

> Why is this issue open after 7 years? I would assume it's because @koalaman stated "I definitely agree that it's bad style, and there should be an optional warning...

Either escape the dollar sign or enclose the EOF in single quotes to avoid variable expansion. Slim example of start, shellcheck complains about this. ```shell brother ~$ cat /tmp/test.sh #!/bin/sh...