Skip to content
Commit 43d8d024 authored by Kenji Okimoto's avatar Kenji Okimoto
Browse files

Remove needless quote

Before: broken command line option
  curl -qsILf "" "$1" >&4 2>&1
  curl -qsILf "--ipv4" "$1" >&4 2>&1

After:
  curl -qsILf "$1" >&4 2>&1
  curl -qsILf --ipv4 "$1" >&4 2>&1
parent 8ff2af42
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment