gpt4 book ai didi

bash - 我如何从 BASH 中的变量追加或覆盖?

转载 作者:行者123 更新时间:2023-11-29 09:37:44 25 4
gpt4 key购买 nike

我正在尝试在 Ubuntu 中使用 BASH 创建一个报告,我想要的第一步是询问用户是否想要附加到预先存在的文件,但是我无法让 > 或 >> 正常工作。有没有更好的方法来完成?

我想要变量方法只是为了了解我该怎么做。我知道我可以对它们进行硬编码,但我想稍后在代码中使用相同的变量,因此选择很重要

#!/bin/bash

DIR="/tmp/"
#REPORT="$HOSTNAME"_$(date +%Y%m%d%S)
REPORT="$HOSTNAME"_$(date +%Y%m%d)

if [ -f "$DIR""$REPORT" ]
then
PS3="Report exists append to record? [y][n]: "
options=("Yes" "No")
select yn in "${options[@]}";
do
case $REPLY in
"y" | "yes" | "Yes" | "YES" )
echo "You want to add to the file"
APPEND=">>"
echo "Ur cmd: echo \"Testing\" $APPEND $DIR$REPORT"
echo "Testing" $APPEND $DIR$REPORT
break
;;
"n" | "no" | "No" | "NO" )
echo "You want to delete the file"
APPEND='>'
echo "Ur cmd: echo \"Testing\" $APPEND $DIR$REPORT"
echo "Testing" $APPEND $DIR$REPORT
break
;;
* )
echo "Your choice was not understood"
;;
esac
done
else
echo "Creating $DIR$REPORT"
touch $DIR$REPORT
fi

最佳答案

您可以创建一个单独的文件描述符,然后写入它。

select yn in Yes No; do
case $yn in
"Yes" )
echo "You want to add to the file"
echo "Your cmd: exec 3>>$DIR$REPORT"
exec 3>>"$DIR$REPORT"
break
;;
"No" )
echo "You want to delete the file"
echo "Your cmd: exec 3>$DIR$REPORT"
exec 3>"$DIR$REPORT"
break
;;
* )
echo "Your choice was not understood"
;;
esac
done

echo "Testing" >&3

exec 语句创建一个新的文件描述符,它可以追加或覆盖日志文件。您写入文件描述符 3 的任何内容都将写入该文件。

还要注意 select 中的变量是如何在 case 语句中使用的。 REPLY 将包含用户输入的数字索引,这不是您想要的。 (但是您在那里进行的不区分大小写和部分字符串比较是不必要的;select 语句将准确返回您作为输入传递给它的标记。)

关于bash - 我如何从 BASH 中的变量追加或覆盖?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38568959/

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