Koichi Nakashima

Results 79 comments of Koichi Nakashima

Certainly, If there is a `--no-warning-as-failure`, I think there should be a way to suppress the warning. It may be better to suppress each type of warning. FYI. You could...

@fuero says [here](https://github.com/bats-core/bats-core/issues/15#issuecomment-505317960) > For all environments: bats 1.1.0, kcov 36 > Arch Linux: GNU bash, version 5.0.7(1)-release (x86_64-pc-linux-gnu) According to this [problem](https://github.com/SimonKagstrom/kcov/pull/291), `BASH_XTRACEFD` will be 2 (stderr) instead of...

Perhaps this is the code to reproduce this Issue. The problem occurs when the total size of the function defined by `eval` exceeds 8KB. This is reproduced even when two...

Workaround ```sh #!/bin/sh if [ "${KSH_VERSION:-}" ]; then ( exec 3>/dev/null 4>&3 5>&3 6>&3 7>&3 8>&3 9>&3 eval "dummy() { $(printf '%8192s' ':'); }" ) 3>&- 4>&- 5>&- 6>&- 7>&-...

AURをよく知らないのですが、なぜ URL (パッケージ?)が2つあるのでしょうか?

That feature was implemented in [v2.5](https://github.com/ko1nksm/getoptions/releases/tag/v2.5.1) as [scanning mode `=` and `#`](https://github.com/ko1nksm/getoptions/tree/v2.5.1#scanning-modes), but was removed in [v3.0](https://github.com/ko1nksm/getoptions/releases/tag/v3.0.0) due to insufficient support for the combined short option. ```sh # I want...

Hi, In my opinion, the most widely used version today is ksh 93u+. ksh 2020 was released once, but is believed to have been abandoned because it failed to solve...

How about this? It is similar to the current syntax. (Add a semicolon after the description) ```sh @test "addition using bc"; { result="$(echo 2+2 | bc)" [ "$result" -eq 4...

It could be a problem with kcov. I wrote a comment [here](https://github.com/SimonKagstrom/kcov/issues/302#issuecomment-630481239).

Try `shellspec --shell sh` (or shell of your choice instead of `sh`). This specifies the shell manually, rather than automatically detecting the current shell. The `ps` command in OpenBSD 7.2...