运行shell脚本时只需要打印echo语句

时间:2019-06-28 09:03:02

标签: bash

我正在使用/bin/bash运行Shell脚本,并且脚本中有一些echo语句。运行脚本时,我看到在脚本中的每个语句处都会显示一个表,其中包含% Total % Received等列。

示例代码:

#!/bin/bash
echo $(date -u) "Initiate Call.."
url="https://somethingfun.com/status/bitecode/lajs/17"
scaleStatus=$(curl -X GET   --header "Accept: */*" "$url/upscale_status")
echo $(date -u) "Current status $scaleStatus"
jobStatus=$(curl -X GET  --header "Accept: */*" "$url/status" | jq '.HIGH')
echo $(date -u) "Job status $scaleStatus"

我在终端输出中看到的表。

[Build]   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
[Build]                                  Dload  Upload   Total   Spent    Left  Speed
[Build] 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   241    0   241    0     0    532      0 --:--:-- --:--:-- --:--:--   533
[Build] Fri Jun 17 16:51:25 UTC 2019 Scaling Initiated

我只想看回声输出,而不是上表。

0 个答案:

没有答案