- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码
#!/bin/bash
if [ "-f /data/sb3???sh25t.sqfs" && "! -f /data/sb3??????sh25t.sqfs" && "! -f /data/sb3????????sh25t.sqfs" && "! -f /data/sb3???????sh25t.sqfs" ] ;then
select build in `ls -D /data/tftpboot/sb3???sh25t.sqfs` ; do
break
done
build=${build:15}
fi
最佳答案
好吧,给自己倒一罐Jolt Cola坐下。这需要一段时间...
Unix shell中的if
语句接受一个命令(任何命令),对该命令进行处理,如果该命令返回退出代码为零,则将执行if语句的then子句。如果该命令返回非零值,则将在存在一个子句的情况下执行else子句。
例如:
if ls foo 2>&1 > /dev/null
then
echo "File 'foo' exists"
else
echo "No Foo For you!"
fi
ls foo
命令。输出将通过
2>&1 > /dev/null
删除,因此如果
foo
存在,您将看不到列表,如果
foo
不存在,则不会收到错误消息。但是,如果
ls
存在,
0
命令仍将返回
foo
,如果
1
不存在,则将返回
foo
。
if mv foo foo.backup
then
echo "Renamed `foo` directory to `foo.backup`"
else
echo "BIG HORKING ERROR: Can't rename 'foo' to 'foo.backup'"
exit 2 #I need to stop my program. This is a big problem.
fi
foo.backup
目录之前,我尝试将目录
foo
重命名为
foo
。目录
mv
可能不存在,所以
if
命令失败。也许我没有重命名目录的权限。不管是什么,
mv
语句都允许我测试
if
命令是否成功。
foo
命令所做的全部操作:它执行一个命令,并根据返回值是否为零,执行或不执行then子句。
$value
的目录?
if
的值是否大于3?
test
语句中!
if test -d foo
then
echo "Directory foo exists"
fi
if test $value -gt 3
then
echo "\$value is bigger than 3"
fi
[
具有与
[
命令的硬链接也恰好发生了:
$ cd /bin
$ ls -li test [
54008404 -rwxr-xr-x 2 root wheel 18576 Jul 25 2012 [
54008404 -rwxr-xr-x 2 root wheel 18576 Jul 25 2012 test
test
命令只是与
[
命令的硬链接。
-gt
1实际上是Unix命令!这就是为什么我需要在方括号和要测试的对象之间留一个空间:
# Invalid Syntax: I need spaces between the test and the braces:
if [$value -gt 3]
# Valid Syntax
if [ $value -gt 3 ]
# Actually the same command as above
if test value -gt 3
-f
和
gt
带有短划线而不是简单地
f
或
-gt
更清楚。这是因为
-f
和
if
是测试命令的参数!
[
的工作方式以及
-f
实际上是Unix命令的方式有了更清楚的了解,我们可以查看您的if语句,看看问题出在哪里:
if [ "-f "/data/sb3???sh25t.sqfs" && "! -f /data/sb3??????sh25t.sqfs" && \
"! -f /data/sb3????????sh25t.sqfs" && "! -f /data/sb3???????sh25t.sqfs" ]
"-f /data/sb3???sh25t.sqfs"
-f
参数与要测试的文件分开。因此,您需要从引号中除去
test
,因此test命令将其视为参数:
if [ -f "/data/sb3???sh25t.sqfs" && ! -f "/data/sb3??????sh25t.sqfs" && \
! -f "/data/sb3????????sh25t.sqfs" && ! -f "/data/sb3???????sh25t.sqfs" ]
&&
命令的(手册页)[http://www.manpagez.com/man/1/test/]。请注意,
test
对于
-a
命令不是有效参数。相反,您假设使用
-f
组合两个表达式_您的测试:
if [ -f "/data/sb3???sh25t.sqfs" -a ! -f "/data/sb3??????sh25t.sqfs" -a \
! -f "/data/sb3????????sh25t.sqfs" -a ! -f "/data/sb3???????sh25t.sqfs" ]
then
!
在引号之外(
-a
也在引号之外),我正在将
&&
和以及所有四个条件一起使用。
if [ -f "/data/sb3???sh25t.sqfs" ] && [ ! -f "/data/sb3??????sh25t.sqfs" ] && \
! -f "/data/sb3????????sh25t.sqfs" ] && [ ! -f "/data/sb3???????sh25t.sqfs" ]
foo
实际上是一个称为列表运算符的bash shell结构。它将两个单独的命令链接在一起,并执行以下操作:
[ -d foo ] && rm -rf foo
test -d foo && rm -rf foo
[...]
是否作为目录存在。如果确实存在,我的测试命令将返回一个真值,然后执行第二个删除目录的命令。和...一样
if [ -d foo ]
then
rm -rf foo
fi
/data/sb3???sh25t.sqfs
执行,并查看文件
&&
是否实际存在。如果是,则该测试为真,并返回零退出代码。然后,
/data/sb3??????sh25t.sqfs
执行列表中的下一个命令。
&&
是否不存在。如果该文件不存在,那么测试命令将返回零退出代码,并且下一个
test
列表运算符将运行下一个测试命令。仅当前三个
if
命令为true时,才会执行最后一个测试命令。如果最后一个测试命令也是true语句,那么您的then子句将被执行。
foo.???
现在如何工作以及遇到问题的原因。
$ echo "Print an *" #Use quotes
Print an *
$ echo Print an * #No quotes
Print an bin foo bar...
$ touch foo.out foo.txt
$ echo "Do I have any foo.??? files"
Do I have any foo.??? files
$ echo Do I have any foo.??? files
Do I have any foo.out foo.txt files
echo
浮动模式,并在
xtrace
命令有机会回显任何内容之前用所有匹配的文件替换该模式。
$ set -x #Turns on `xtrace`
$ touch foo.out foo.txt
+ touch foo.out foo.txt
$ echo "Do I have any foo.??? files"
+ echo "Do I have any foo.??? files"
Do I have any foo.??? files
$ echo Do I have any foo.??? files
+ echo Do I have any foo.out foo.txt files
Do I have any foo.out foo.txt files
$ set +x #Turns off `xtrace`
+
功能向您显示在shell嘲笑命令后您将要执行的命令。以
/data/sb3aaash25t.sqfs
开头的行显示了命令将实际执行的操作。
if [ -f /data/sb3???sh25t.sqfs ] && [ ! -f /data/sb3??????sh25t.sqfs ] && \
[ ! -f /data/sb3????????sh25t.sqfs ] && [ ! -f /data/sb3???????sh25t.sqfs ]
/data/sb3bbbsh25t.sqfs
和一个名为
-f
的文件,则if语句中的第一个测试命令将如下所示:
if [-f /data/sb3aaash25t.sqfs /data/sb3bbbsh25t.sqfs ]
ls
参数仅采用一个文件名。因此,即使您执行了上述所有操作,您仍然可能会遇到无法运行的程序。更糟糕的是,它会间歇性地失败,这更加难以调试。
ls
命令,就像您在此答案的顶部看到的那样:
if ls /data/sb3???25t.sqfs 2>&1 > /dev/null
then
echo "At least one file that matches pattern sb3???25t.sqfs exists"
fi
if ls /data/sb3???sh25t.sqfs 2>&1 > /dev/null && \
! ls /data/sb3??????sh25t.sqfs 2>&1 > /dev/null && \
! ls /data/sb3????????sh25t.sqfs 2>&1 > /dev/null && \
! ls /data/sb3???????sh25t.sqfs 2>&1 > /dev/null
then
if
可以占用多个文件。
[...]
语句的工作方式,或者
if
确实是与
[
完全分开的Unix命令,或者该混杂的Unix shell将如何运行绊倒你。
/bin/[
内置在BASH shell中,而不是
[
命令。但是,内置在
/bin/[
中的shell的作用类似于
关于bash - 为什么我从此bash脚本中得到“缺少`]'来列出文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14880244/
我有 powershell 脚本。通过调度程序,我运行 bat 文件,该文件运行 PS1 文件。 BAT文件 Powershell.exe -executionpolicy remotesigned
什么更快? 或者 $.getScript('../js/SOME.js', function (){ ... // with $.ajaxSetup({ cache: true });
需要bash脚本来显示文件 #!/bin/bash my_ls() { # save current directory then cd to "$1" pushd "$1" >/dev/nu
我有一个输入 csv 文件,实际上我需要在输入文件中选择第 2 列和第 3 列值,并且需要转换两个值的时区(从 PT 到 CT),转换后我需要替换转换后的时区值到文件。 注意: 所有输入日期值都在太平
我正在使用/etc/init.d/httpd 作为 init.d 脚本的模板。我了解文件中发生的所有内容,但以下行除外: LANG=$HTTPD_LANG daemon --pidfile=${pid
我有以下选择: python runscript.py -O start -a "-a "\"-o \\\"-f/dev/sda1 -b256k -Q8\\\" -l test -p maim\""
我对 shell 脚本完全陌生,但我需要编写一个 shell 脚本来检查文件是否存在,然后移动到另一个位置 这是我写的: 一旦设备崩溃,我就会在/storage/sdcard1/1 中收集日志 #!/
我正在使用 bash 脚本从文本文件中读取数据。 数据: 04:31 Alex M.O.R.P.H. & Natalie Gioia - My Heaven http://goo.gl/rMOa2q
这是单击按钮时运行的 javascript 的结尾 xmlObj.open ('GET', /ajax.php, true); xmlObj.send (''); } 所以这会执行根目录中的php脚本
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我需要将文件转换为可读流以通过 api 上传,有一个使用 fs.createReadStream 的 Node js 示例。任何人都可以告诉我上述声明的 python 等价物是什么? 例子 const
我有一个 shell 脚本 cron,它从同一目录调用 python 脚本,但是当这个 cron 执行时,我没有从我的 python 脚本中获得预期的输出,当我手动执行它时,我的 python 脚本的
如何使 XMLHttpRequest (ajax) 调用的 php 脚本安全。 我的意思是,不让 PHP 文件通过直接 url 运行,只能通过脚本从我的页面调用(我不想向未登录的用户显示数据库结果,并
我正在尝试添加以下内容 我正在使用经典的 asp。但我不断收到的错误是“一个脚本 block 不能放在另一个脚本 block 内。”我尝试了此处的 document.write 技术:Javasc
如何从另一个 PHP 脚本(如批处理文件)中运行多个 PHP 脚本?如果我了解 include 在做什么,我认为 include 不会起作用;因为我正在运行的每个文件都会重新声明一些相同的函数等。我想
我想创建具有动态内容的网页。我有一个 HTML 页面,我想从中调用一个 lua 脚本 如何调用 lua 脚本? ? ? 从中检索数据?我可以做类似的事情吗: int xx = 0; xx
我删除了我的第一个问题,并重新编写了更多细节和附加 jSfiddle domos。 我有一个脚本,它运行查询并返回数据,然后填充表。表中的行自动循环滚动。所有这些工作正常,并通过使用以下代码完成。然而
我尝试使用 amp 脚本,但收到此错误: “[amp-script] 脚本哈希未找到。amp-script[script="hello-world"].js 必须在元[name="amp-script
我有一个读取输入的 Shell 脚本 #!/bin/bash echo "Type the year that you want to check (4 digits), followed by [E
我正在从 nodejs 调用 Lua 脚本。我想传递一个数组作为参数。我在 Lua 中解析该数组时遇到问题。 下面是一个例子: var script = 'local actorlist = ARGV
我是一名优秀的程序员,十分优秀!