- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用我能找到的所有 shell 运行了以下命令(*sh
是 sh
实现的名称);虽然我期待所有打印match
,我得到了不一致的结果。我不知道哪种行为是正确和可靠的。
*sh -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
$ dash -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
match
$ bash -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
match
$ ksh -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
match
$ ksh -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
$
$ lksh -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
$ mksh -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
$
$ posh -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
$
$ yash -c 'case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
$
$ zsh -c 'emulate sh; case "$1" in $2) echo match; esac' _ 'f\oo' 'f\\oo'
match
\\
或作为 \
? 还是未指定?
In order from the beginning to the end of the case statement, each pattern that labels a compound-list shall be subjected to tilde expansion, parameter expansion, command substitution, and arithmetic expansion, and the result of these expansions shall be compared against the expansion of word, according to the rules described in Pattern Matching Notation (which also describes the effect of quoting parts of the pattern)
A <backslash> character shall escape the following character. The escaping <backslash> shall be discarded
最佳答案
也许这一点引用可以为您的问题解决问题。来自 POSIX's Shell Command Language specification - under Pattern Matching Notation该条款规定,
2.13.1 Patterns Matching a Single Character
A
<backslash>
character shall escape the following character. The escaping<backslash>
shall be discarded. If a pattern ends with an unescaped<backslash>
, it is unspecified whether the pattern does not match anything or the pattern is treated as invalid
case
的模式。语句和使用
==
时
bash
中的全局匹配运算符使用
test
构造。
$2
在进行模式匹配时保持不加引号,
f\\oo
的文字值永远丢失并被解释为
f\oo
.
关于shell - 应该如何处理由变量扩展产生的反斜杠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59348035/
我有一个右下角倾斜的元素,我必须在其上放置一个盒子阴影。有时倾斜的 Angular 被徽章覆盖 - 我的问题不适用,如果是这样的话: 这是信息框及其边 Angular 的 (s)css 部分(还有更多
是否可以在纯 html/css 中创建类似下面的内容? 我想做这个响应式和全 (100%) 宽度(最大左 Angular 100 像素,右边最小 50 像素,类似的东西)。 最佳答案 您可以通过转换(
如何在 fabricjs 文本中为文本提供渐变或斜 Angular 效果?? http://fabricjs.com/fabric-intro-part-2/ 这里给出了形状和所有示例,我将其与文本绑
我用过: http://apps.eky.hk/css-triangle-generator/ 为彼此对 Angular 放置的两个不等边三 Angular 形生成 css: 左下三 Angular
我是一名优秀的程序员,十分优秀!