gpt4 book ai didi

linux - -b 选项在 SFTP 中有什么作用

转载 作者:IT王子 更新时间:2023-10-29 01:19:43 25 4
gpt4 key购买 nike

我在看一些旧的 shell 脚本,有一行我不太明白:

~]$ sftp -b /dev/fd/3 dropuser@targetftpserver.company.com

我可以从 man 文件中看到 -b 用于批处理,并且该参数应该是一个批处理文件。

在这种情况下,批处理文件应该位于/dev/fd/3 - 软盘驱动器上?我似乎无法理解。

知道这应该做什么吗?

最佳答案

"/dev/fd*" 文件是特殊设备。这些并没有真正占用您系统上的那么多空间。它们允许进程按编号访问文件描述符; 0,1,2为标准输入标准输出标准错误,其他打开文件以3

在你的情况下 sftp 使用 -b/dev/fd/3 读取命令

示例:

[root@04 fd]# exec 3< /etc/resolv.conf
[root@04 fd]# cat /dev/fd/3
search example.com

nameserver 10.10.10.10
nameserver 20.20.20.20

您可以使用read 命令读取数据

[root@04 fd]# read -u 3 a b
[root@04 fd]# echo $a $b
nameserver 10.10.10.10

/dev/fd 目录的输出

[root@04 fd]# ls -l /dev/fd/
total 0
lrwx------ 1 root root 64 Feb 20 14:34 0 -> /dev/pts/0
lrwx------ 1 root root 64 Feb 20 14:34 1 -> /dev/pts/0
lrwx------ 1 root root 64 Feb 20 14:34 2 -> /dev/pts/0
lr-x------ 1 root root 64 Feb 20 14:34 3 -> /etc/resolv.conf

注意:在您的情况下,输入文件可能不同

关于linux - -b 选项在 SFTP 中有什么作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14987210/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com