- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道如何删除文件的扩展名,当我知道它是:
nameis=$(basename $dataset .csv)
但我想在事先不知道的情况下删除任何扩展程序,有人知道该怎么做吗?
感谢任何帮助,泰德
最佳答案
在 bash 中,您可以执行以下操作:
nameis=${dataset%.*}
...例如:
$ dataset=foo.txt
$ nameis=${dataset%.*}
$ echo $nameis
foo
此语法在 bash 手册页中描述为:
${parameter%word}
${parameter%%word}
Remove matching suffix pattern. The word is expanded to produce a pattern just as in pathname expansion. If the pattern matches a trailing portion of the expanded value of parameter, then the result of the expansion is the expanded value of parameter with the shortest matching pattern (the "%" case) or the longest matching pattern (the "%%" case) deleted. If parameter is @ or *, the pattern removal operation is applied to each positional parameter in turn, and the expansion is the resultant list. If parameter is an array variable subscripted with @ or *, the pattern removal operation is applied to each member of the array in turn, and the expansion is the resultant list.
关于bash - 在不知情的情况下从文件中删除扩展名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5365090/
这个问题在这里已经有了答案: How to get all enum values in Java? (8 个回答) 关闭5年前。 我想创建一个 JComboBox 来处理选择给它的任何 Enum。为
我是一名优秀的程序员,十分优秀!