" send "-6ren">
gpt4 book ai didi

linux - Linux 中 #!/bin/bash 和 #!/bin/expect 有什么区别?

转载 作者:太空宇宙 更新时间:2023-11-04 05:27:46 25 4
gpt4 key购买 nike

我已经为ftp连接编写了expect脚本和shell脚本。你能告诉我哪一个更好或者更快吗?

这个期望脚本

expect << EOF
spawn sftp xxx.xxx.xxx.xxx
expect "User Name :"
send "username\r"
expect "password:"
send "password\r"
expect "sftp> "
send "cd in\r"
expect "sftp> "
send "mkdir $current_date_$pharmacy_code\r"
expect "sftp> "
send "cd $current_date_$pharmacy_code\r"
expect "sftp> "
send "put $1\r"
expect "sftp> "
send "exit\r"
EOF

Shell 脚本

sftp $host << EOF
quote USER $user
quote PASS $password
cd in
mkdir $current_date_$pharmacy_code
cd $current_date_$pharmacy_code
put $1
exit
EOF

最佳答案

它们是不同的语言,具有不同的库。

Expect 是 Tcl 的一个库,两者都可以在各种操作系统上运行。

Bash 是 Linux 的标准命令解释器,在许多其他操作系统上通常找不到。

至于哪个更快,给它们计时看看。然而,速度本身可能并不是唯一相关的标准:错误处理、可靠性、可维护性、可移植性等可能是选择实现的更大因素。

关于linux - Linux 中 #!/bin/bash 和 #!/bin/expect 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28666992/

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