1. 25 5月, 2023 1 次提交
  2. 13 12月, 2022 1 次提交
  3. 13 10月, 2022 2 次提交
  4. 10 10月, 2022 1 次提交
  5. 08 10月, 2022 1 次提交
    • P
      Permit colon after exec · 128351f5
      Peter Oliver 提交于
      ShellCheck throws warning SC2093 when a script contains commands that could never be executed because they are after an `exec`.  Command `:` does nothing, so add it to the list of commands that don’t trigger this warning.
      128351f5
  6. 25 9月, 2022 1 次提交
  7. 24 9月, 2022 1 次提交
  8. 22 9月, 2022 1 次提交
  9. 03 8月, 2022 1 次提交
  10. 28 7月, 2022 1 次提交
  11. 26 7月, 2022 1 次提交
  12. 25 7月, 2022 3 次提交
  13. 24 7月, 2022 1 次提交
  14. 23 7月, 2022 2 次提交
  15. 22 7月, 2022 1 次提交
  16. 20 7月, 2022 5 次提交
  17. 07 5月, 2022 1 次提交
    • R
      Fix bug in 2126 when using after/before flags with grep · 28215526
      Rune Juhl Jacobsen 提交于
      Using `--after-context`/`-A` or `--before-context`/`-B` would give a warning
      recommending the user to use `grep -c`, even though that would give a different
      result than using `grep | wc -l`:
      
      ```fundamental
      $ echo -e "1\n2\n3" | grep -cA 3 1
      1
      $ echo -e "1\n2\n3" | grep -A 3 1 | wc -l
      3
      ```
      28215526
  18. 14 12月, 2021 1 次提交
    • R
      Fix bug in 2126 when using after/before flags with grep · 3a118246
      Rune Juhl Jacobsen 提交于
      Using `--after-context`/`-A` or `--before-context`/`-B` would give a warning
      recommending the user to use `grep -c`, even though that would give a different
      result than using `grep | wc -l`:
      
      ```fundamental
      $ echo -e "1\n2\n3" | grep -cA 3 1
      1
      $ echo -e "1\n2\n3" | grep -A 3 1 | wc -l
      3
      ```
      3a118246
  19. 05 12月, 2021 1 次提交
  20. 15 11月, 2021 3 次提交
  21. 07 11月, 2021 2 次提交
  22. 31 10月, 2021 1 次提交
  23. 16 10月, 2021 1 次提交
  24. 10 10月, 2021 1 次提交
  25. 08 10月, 2021 1 次提交
  26. 01 10月, 2021 1 次提交
  27. 26 9月, 2021 2 次提交
  28. 19 9月, 2021 1 次提交