You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't pass user-supplied data in a context where it could be interpreted as code.
BAD: ssh host "rm $file"
GOOD: ssh host "$(printf 'rm %q' "$file")"
See http://mywiki.wooledge.org/BashProgramming/05
Don't pass user-supplied data in a context where it could be interpreted as code.
BAD: ssh host "rm $file"
GOOD: ssh host "$(printf 'rm %q' "$file")"
See http://mywiki.wooledge.org/BashProgramming/05
In the snap list | awk while loop