将命令输出保存到变量“:找不到命令”

时间:2019-06-28 18:16:51

标签: bash

我正在创建一个脚本,当我的可用RAM低于某个值时,该脚本将终止任务。为此,我有此命令可获取剩余的RAM数量。当我显示它时,我得到了一个数字“ 154372822”,但是当我通过$()将其保存到变量中时,该数字上带有一个附加“ :: not found”的数字。

一旦有了这个“ var1”,我希望将其传递给if语句。

%这是代码的发布行。

const COLLECTION_NAME = 'ping-pong';
const POLL_INTERVAL = 5000;

function pingPong(credentials) {
  const pongSender = () => {
    const id = _.uniqueId('pong-');
    const payload = {
      message: 'pong',
      time: Date.now(),
    };
    this.added(COLLECTION_NAME, id, payload);
  };
  pongSender();
  this.ready();
  const interval = Meteor.setInterval(pongSender, POLL_INTERVAL);

  this.onStop(() => {
    Meteor.clearInterval(interval);
  });
}

1 个答案:

答案 0 :(得分:0)

if [[ "$var1" -lt 1000000 ]]-参见conditionals