作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#!/bin/bash
file=debian.deb
test=basename $file .deb
DP="blah/blah/$test/$test.php"
read -p "[$DP]: " DPREPLY
DPREPLY=${DPREPLY:-$DP}
echo "Blah is set to $DPREPLY"
echo $DPREPLY>>testfile
所以我要做的是从变量文件设置变量 test 并在文件 testfile 中使用它。
最佳答案
使用命令替换$(...)
机制:
test=$(basename "$file" .deb)
您也可以使用反引号,但在现代脚本中不推荐使用反引号(主要是因为它们不像 $(...)
符号那样嵌套)。
test=`basename "$file" .deb`
您需要了解反引号才能解释其他人的脚本;你不应该自己使用它们。
注意 "$file"
周围的引号;这确保文件名中的空格得到正确处理。
关于file - 如何将 basename 放入变量中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9556939/
我是一名优秀的程序员,十分优秀!