gpt4 book ai didi

bash - 如何在 bash 脚本中标记标准输出

转载 作者:行者123 更新时间:2023-11-29 09:46:54 24 4
gpt4 key购买 nike

<分区>

我有一个如下所示的基本脚本:

#!/bin/bash
### run these 2 commands and dump the contents to a file
run command 1 > /dir/file1
run command 2 > /dir/file2

##### run this command, echo the output and email me if $var is above a certain # and send the contents of the dump files in the email
var=$(netstat -an | wc -l)
echo $var
if [ "$var" -ge 700 ]; then
cat /dir/file1 /dir/file2 | mailx -s "System X has over $var connections. " email recipients
fi

我需要做的是标记内容以区分这 2 个文件,这样当我收到电子邮件时,我知道命令 1 的输出是什么,命令 2 的输出是什么。执行此操作的最佳方法是什么?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com