- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
tee newOutputFile < existingInputFile > newOutputFile2
tee
究竟会怎样?接受论点?会是这样吗?
newOutputFile < existingInputFile
所以existingInputFile的内容会被写入newOutputFile newOutputFile > newOutputFile2
所以 newOutputFile 的内容会被写入 newOutputFile 2 tee
的顺序感到困惑。 .我编写程序的方式可以做到
tee newOutputFile2 < existingInputFIle
最佳答案
tee
command 是一个普通的 Unix 程序,就像 sh
或 sort
或 cat
.
处理 < existingInputFile
所涉及的所有 I/O 重定向工作和 > newOutputFile2
由 tee
之前的 shell 完成命令被调用(在创建将执行 fork
命令的进程的 tee
之后)。该命令使用来自 existingInputFile
的标准输入调用。其标准输出为 newOutputFile2
.给 tee
的唯一参数是 argv[0]
(字符串 tee
)和 argv[1]
(字符串 newOutputFile
),加上一个空指针来标记参数列表的结尾。
请特别注意,existingInputFile
的实际读取不涉及 shell。 ;它只是打开它进行读取并将其连接到 tee
的标准输入, 但不知道 tee
命令实际上是否读取它。同样,shell 不参与到 newOutputFile2
的实际写入中。 ;它只是打开并截断它(或创建它)并将其连接到 tee
的标准输出, 但不知道 tee
command 实际上向它写入任何内容。在这种情况下,而 tee
命令正在运行,父 shell 是完全被动的,不执行 I/O。
根据设计,tee
读取其标准输入并将所有内容的一份副本写入其参数列表中给定的每个文件,然后再将一份副本写入标准输出。
I was under the impression that the shell was involved in the actual reading and writing of the files. So when I call
execvp
, it only takes in the command (in this casetee
) and the final file to write the contents to (in this casenewOutputFile2
). I am trying to create my own shell program, how would I do the I/O redirection. Is this wheredup2
comes into play?
tee newOutputFile < existingInputFile > newOutputFile2
,命令为
tee
唯一的其他参数是
newOutputFile
.通常,命令(在这种情况下为
tee
)不知道为其提供标准输入的文件的名称,也不知道它在其标准输出上写入的文件的名称。确实,尤其是
tee
,输入通常是管道而不是文件,并且输出通常也是管道而不是文件:
some_command arg1 arg2 | tee some_command.log | another_command its_arg1 its_arg2 > output.file
dup2()
复制您单独打开的文件描述符,使其成为标准输入:
// Redirect standard input from existingInputFile using dup2()
char *i_filename = "existingInputFile";
int fd = open(i_filename, O_RDONLY);
if (fd < 0)
{
fprintf(stderr, "unable to open file %s for reading (%d: %s)\n",
i_filename, errno, strerror(errno));
exit(1);
}
dup2(fd, STDIN_FILENO);
close(fd); // Crucial!
fd
很重要。在这种情况下。否则,该命令将在至少打开一个未在命令行中指定的额外文件描述符的情况下运行。对于标准输出重定向,您会有类似的代码块。
// Redirect standard input from existingInputFile
close(0);
char *i_filename = "existingInputFile";
int fd = open(i_filename, O_RDONLY);
if (fd < 0)
{
fprintf(stderr, "unable to open file %s for reading (%d: %s)\n",
i_filename, errno, strerror(errno));
exit(1);
}
assert(fd == 0);
// Redirect standard output to NewOutputFile2
close(1);
char * o_filename = "newOutputFile2";
fd = open(o_filename, O_WRONLY|O_CREAT|O_TRUNC, 0644); // Classically 0666
if (fd < 0)
{
fprintf(stderr, "unable to open file %s for writing (%d: %s)\n",
o_filename, errno, strerror(errno));
exit(1);
}
assert(fd == 1);
open()
返回先前未打开的最低可用文件描述符,因此通过关闭 0,您知道
open()
成功时返回 0,失败时返回 -1(即使 0 之前已关闭)。然后,通过归纳,你知道在关闭 1 之后,
open()
成功时返回 1,失败时返回 -1(即使 1 之前已关闭)。除非命令行包含 I/O 重定向,例如
2>/dev/null
,否则您通常不会修改标准错误。或
2>&1
或类似的东西。
O_IRUSR|O_IWUSR|O_IRGRP|O_IROTH
|O_IWGRP|O_IWOTH
;无论如何,权限将由
umask
修改)。就个人而言,我发现八进制更容易阅读,但我在
O_Ixyyy
之前几年就开始使用八进制权限。名字被发明了。
关于shell - POSIX 'tee' 命令如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23448043/
我相信我在子 shell 中调用 exit 会导致我的程序继续: #!/bin/bash grep str file | while read line do exit 0 done
我相信我在子 shell 中调用 exit 会导致我的程序继续: #!/bin/bash grep str file | while read line do exit 0 done
我有几个脚本,它们的第一部分看起来是一样的。这部分的功能是识别脚本在哪台机器上运行并相应地设置几个变量。它看起来像这样: ENV=`echo $LOGNAME | cut -c1-8` if
这是我正在尝试做的事情。我有 4 个 shell 脚本。脚本 1 需要先运行,然后是 2,然后是 3,然后是 4,并且它们必须按此顺序运行。脚本 1 需要运行(并在后台等待)2 才能正常运行,但是脚本
我有一个名为 a.sh 的脚本,其中的内容是: //a.sh: #!/bin/bash temp=0 while [ "$temp" -ne 500 ] do echo `date`
在snakemake中,使用shell()函数执行多个命令的推荐方式是什么? 最佳答案 您可以调用shell()多次内run规则块(规则可以指定 run: 而不是 shell: ): rule pro
我有一个 shell 脚本,我向其中传递了一些参数。Test1.sh -a 1 -b 2 -c“一二三” 在 Test1.sh 中,我按以下方式调用另一个 shell 脚本。Test2.sh $* 我
我有 2 个 shell 脚本。 第二个shell脚本包含以下函数第二个.sh func1 func2 first.sh 将使用一些参数调用第二个 shell 脚本, 将使用特定于该函数的一些其他参数
我有一个 Unix shell 脚本 test.sh。在脚本中,我想调用另一个 shell,然后从子 shell 执行 shell 脚本中的其余命令并退出 说清楚: test.sh #! /bin/b
我想在 shell 脚本中更改路径环境变量。路径变量需要在shell脚本执行后修改。 最佳答案 我知道有两种方法可以做到这一点。第一种是在当前 shell 的上下文中运行脚本: . myscript.
此 shell 脚本按预期运行。 trap 'echo exit' EXIT foo() { exit } echo begin foo echo end 这是输出。 $ sh foo.sh
我正在使用 vimshell在 vim 中执行命令 nnoremap vs :VimShellPop 使用此键映射,我可以打开 vim shell 并执行诸如“捆绑安装”之类的命令,然后 输入 exi
我想连接到不同的 shell(csh、ksh 等)并在每个切换的 shell 中执行命令。 下面是反射(reflect)我的意图的示例程序: #!/bin/bash echo $SHELL csh e
我目前正在尝试使用 BNF 和 LL 解析器在 C 中重新编写 shell。 否则,我需要知道 shell 运算符的优先级是什么| , > , > , & , ; ? 有没有人可以提供给我? 谢谢 最
不幸的是,我没有suspend 命令(busybox/ash)。但是我可以使用 kill -STOP $$ 从后台 shell (sh &) 返回到父 shell(以及 fg 之后)。 但是我不想输入
我需要知道,当用户切换到另一个 shell 时,通过单击它。 我试过 shellListener.shellDeactivated()但是当 shell 失去对它自己的控件的焦点时,会触发此事件,这意
file1.txt aaaa bbbb cccc dddd eeee file2.txt DDDD cccc aaaa 结果 bbbb eeee 如果能不区分大小写就更好了! 谢谢! 最佳答案 gre
我见过解压缩目录中所有 zip 文件的循环。但是,在运行此之前,我宁愿确保我将要运行的内容正常工作: for i in dir; do cd $i; unzip '*.zip'; rm -rf *.z
我对编程还很陌生,但我想知道 vim、emacs、nano 等 shell 文本编辑器如何能够控制命令行窗口。我主要是一名 Windows 程序员,所以可能在 *nix 上有所不同。据我所知,只能将文
我有一个包含第 7 列日期的文件,我的要求是将它与今天的日期进行比较,如果小于它,则删除该完整行。 此外,如果第 7 列中提到的任何日期超过 15 天,则将其修改为最多 15 天 下面的例子- now
我是一名优秀的程序员,十分优秀!