gpt4 book ai didi

linux - 如何在 linux 中创建一个脚本来显示错误?

转载 作者:太空宇宙 更新时间:2023-11-04 09:33:02 25 4
gpt4 key购买 nike

我有下面的代码,但每当我运行它并输入不正确的名称时,它不会显示错误消息,它只是变成空白。

#!/bin/bash

name=$1
if [ "$name" = "" ]
then echo -n "Enter a name to search for: "
read name
else
echo "Name '$name' is not in directory"
fi
grep -i $name ~uli101/2015a/phonebook

最佳答案

阅读代码:当 $1 不为空时显示“错误消息”。你可能想要类似的东西

if ! grep -i "$name" ~uli101/2015a/phonebook ; then
echo "Name '$name' is not in directory"
fi

关于linux - 如何在 linux 中创建一个脚本来显示错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29503068/

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