作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我会写:
X=""
if [ -f foo.txt ]; then
X=$(<foo.txt)
fi
但这是 4 行。有没有更紧凑的方式来表达这个逻辑?
最佳答案
如果你只做 X=$(< foo.txt)
, X
如果文件不存在,将为空,但您会收到一条错误消息:
$ X=$(< foo.txt)
-bash: foo.txt: No such file or directory
如果你想抑制它(还有任何其他错误消息),你可以将 stderr 重定向到 /dev/null
:
{ X=$(< too.txt); } 2> /dev/null
X
之后实际上是空的:
$ declare -p X
declare -- X="
关于 "if a file exists, read it into variable, else empty string"的 Bash 单行代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53859603/
我是一名优秀的程序员,十分优秀!