diff options
| author | Renato Botelho <garga@FreeBSD.org> | 2025-01-09 12:16:10 +0000 |
|---|---|---|
| committer | Renato Botelho <garga@FreeBSD.org> | 2025-01-09 14:21:11 +0000 |
| commit | 19a6bc9f51e5c5705a2b396b0da61e6536acb4cb (patch) | |
| tree | d4714c9ed44ad57466c14a7426ff56cde62ac598 /usr.sbin | |
| parent | 2f82bf3521f955c0ef9cc0019b7f86c13020660c (diff) | |
Diffstat (limited to 'usr.sbin')
| -rwxr-xr-x | usr.sbin/fwget/fwget.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/fwget/fwget.sh b/usr.sbin/fwget/fwget.sh index 3e2181e53b73..d87cd03aa139 100755 --- a/usr.sbin/fwget/fwget.sh +++ b/usr.sbin/fwget/fwget.sh @@ -47,7 +47,9 @@ EOF log() { - echo "$@" + if [ "${QUIET}" != "y" ]; then + echo "$@" + fi } log_verbose() |
