让 bash 脚本了解假期

发布于 2024-12-18 07:03:56 字数 453 浏览 0 评论 0原文

我正准备开始编写 bash 脚本(作为 bash 新手)。该脚本的目的是强制要求某些其他命令(即脚本的工作部分)不在假期运行。

我在网上找到了下面的代码段在线

#!/bin/bash
grep -i date holiday.txt
if[ $? -ne 0] then;
#script to run the jobs
exit
fi

虽然我承认我是 bash 新手,但我似乎看不出这个脚本有什么问题 - 但同时,它看起来有点太“简单化” - 有没有我未经训练的眼睛无法发现的“陷阱”现在现货,但稍后会来咬我的屁股吗?

我正在运行 GNU bash,版本 4.1.5(1)-release

I was about to embark on writing a bash script (as a bash newbie). The purpose of the script is to be enforce the requirement that some other commands (i.e. the work part of the script) dosen't run on holidays.

I found the snippet below online:

#!/bin/bash
grep -i date holiday.txt
if[ $? -ne 0] then;
#script to run the jobs
exit
fi

Although I admit I am a bash neophyte, I can't seem to spot anything wrong with this script - yet at the same time, it looks a little too "simplistic" - are there any "gotchas" that my untrained eye cannot spot now, but will come to bite me in the rear later on?

I am running GNU bash, version 4.1.5(1)-release

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤单情人 2024-12-25 07:03:56

假期.txt 的示例

2011-11-25 // testing purpose
2011-12-25
2012-01-01
if test $(grep $(date +%Y-%m-%d) holiday.txt -ic) -ne 0
then
   # your action list
fi

example of holiday.txt

2011-11-25 // testing purpose
2011-12-25
2012-01-01
if test $(grep $(date +%Y-%m-%d) holiday.txt -ic) -ne 0
then
   # your action list
fi
以可爱出名 2024-12-25 07:03:56

对我来说看起来很好,除了语法之外,除了我不确定你想要屏幕上的输出。您可能更喜欢

if ! grep -q -i date holiday.txt ; then
    true
    exit
fi

在原始代码中,我认为您需要交换 ;then 并在 [ 之前添加空格。

另外,如果代码很短

grep -q -i date holiday.txt || somethingbeingdone

,也许更方便的方法。

Looks fine to me, except for syntax and except for I'm not sure you want the output on the screen. You may prefer

if ! grep -q -i date holiday.txt ; then
    true
    exit
fi

In original code I think you need to swap ; and then and add space before [.

Also, if the code is short

grep -q -i date holiday.txt || somethingbeingdone

maybe more convenient way to do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文