将输出通过管道传输到shell脚本中|亚马逊Linux

ig9co6j1  于 2023-03-13  发布在  Shell
关注(0)|答案(1)|浏览(129)

我有一个类似的情况下,我需要在操作系统Amazon Linux中使用命令启动shell脚本..下面是我传递的命令

[premkumar@rails-app-5 ~]$ sudo rds-watch-db-logfile fdstaging --log-file-name slowquery/mysql-slowquery.log | ./watch.sh

以下是回复。

-bash: ./watch.sh: Permission denied

Watch.sh

#! /bin/bash
URL="https://collectors.sumologic.com/receiver/v1/http/<unique URL string>"
while read data;
do
        curl --data "$data" $URL
done

--结束
引用链接为https://www.sumologic.com/2014/07/28/pushing-aws-rds-logs-to-sumo-logic/
有人能帮我吗?我需要用命令运行这个shell脚本。

ttp71kqs

ttp71kqs1#

您可能尚未设置脚本的可执行位。请尝试chmod a+x watch.sh,然后重试。

相关问题