Issues
- 0
Function name parse failed of contain jointed pound
#3102 opened by A4-Tacks - 2
SC2059: What about when escape codes (e.g. ANSI colors), not printf specifiers, are in the variable?
#3093 opened by techflashYT - 5
print a warning when the return value of a function is checked when errexit is enabled
#3095 opened by johnatswoopsrch - 0
- 0
SC3036 false positive on ash (In Dash, echo flags besides -n are not supported)
#3100 opened by felipecrs - 0
- 0
- 0
[SC3003] `$'..'` is POSIX.1-2024 compliant
#3098 opened by Neved4 - 0
#!/bin/bash # 设置目标地址 TARGET="example.com" # 设置输出文件 OUTPUT="/20241205.txt" # 设置结束时间(当前时间加24小时) END_TIME=$(date -d "+24 hours" +%s) # 当前时间戳 CURRENT_TIME=$(date +%s) # 当当前时间小于结束时间时,持续执行ping命令 while [ "$CURRENT_TIME" -lt "$END_TIME" ]; do # 获取当前时间戳并执行ping命令,将结果和时间戳一起追加到文件中 { echo "Timestamp: $(date '+%Y-%m-%d %H:%M:%S')" ping -c 1 $TARGET } >> $OUTPUT # 等待一秒钟(或您想要的时间间隔) sleep 1 # 更新当前时间戳 CURRENT_TIME=$(date +%s) done echo "Ping completed for 24 hours."
#3096 opened by muster0001 - 3
- 3
SC2031 missing issues with process substitution (`<()`)
#3084 opened by stdedos - 3
Diff 1.0 was released
#3075 opened by juhp - 1
SC2016 shouldn't happen for single quoted variable INSIDE double-quoted string
#3092 opened by dmlane - 0
test beginning with "${ and "$(" generate an at times confusing sc1009 and for "$( a potentially incorrect sc1083 message.
#3091 opened by dshuman52 - 0
There appears to be a missing check for mismatched [] around an array index reference.
#3085 opened by dshuman52 - 0
Update Wiki Template to generate anchor point URLs
#3090 opened by stdedos - 0
check for readonly variables within loops
#3089 opened by robstoll - 1
Warn about Code Execution in Arithmetic Expressions for Bash `[[ $1 -eq 42 ]]`
#3088 opened by clushie - 1
Error 2276 for Valid Zsh Assoc Array Assignment
#3087 opened by wdeshazer - 4
- 5
- 1
[SC3045] `read -d` is POSIX.1-2024 compliant
#3062 opened by JP-Ellis - 1
Ignoring a wrapped command
#3086 opened by avidseeker - 1
- 0
Bug: --include silently fails for optional checks without --enable
#3079 opened by BebeSparkelSparkel - 0
- 0
does Shellcheck have WASM now
#3077 opened by Zlaojie - 2
SC2154 is triggered on an all caps variable
#3074 opened by danielcft - 1
Would you consider adding the appropriate changelog fragment to the releases when releasing?
#3051 opened by stdedos - 3
SC2329 should be transitive
#3054 opened by ensc - 1
- 4
strange style warning
#3071 opened by jmikedupont2 - 2
where is the errors database in the github repo?
#3073 opened by paxsali - 6
Run set -x in a subshell
#3072 opened by alex-harvey-z3q - 0
unbound variable not detected
#3069 opened by udf2457 - 2
Feature suggestion: Warnings regarding (automatic) recursive indirection/eval within [[ (( and $(( blocks
#3067 opened by fedy-cz - 0
- 0
- 0
(Other) Libraries suitable for implementing my own static analyses for (ba)sh
#3065 opened by deliciouslytyped - 0
- 0
(( arithmetic expressions )) for ksh a Linux flavor
#3063 opened by LerouxYvon - 0
Recursiveness topic in the manpage
#3061 opened by opk12 - 0
- 0
- 0
[SC2317] False positive with nested functions
#3057 opened by GrabbenD - 0
SC3045: Inconsistent policy
#3058 opened by mcandre - 3
SC2086 - False positive in multi-line quoted string
#3049 opened by gstory20 - 2
[SC2120] False positive when a function is called by `trap` with arguments
#3052 opened by Frederick888 - 1
[SC2295] Example itself is problematic.
#3055 opened by Europia79 - 0
Incorrect handling of the source command
#3053 opened by pepalogik