我在一台服务器上有datezip.zip和sample.sh脚本。我正在尝试将此datezip.zip文件推送到特定目录中的目标服务器,并将其解压缩到那里。此过程在sample.sh脚本中运行
Sample.sh脚本:
#!/bin/ksh
echo "Enter the username"
read user echo "Enter the IP Address"
read Ip echo "Enter the directory name"
read dir
scp datezip.zip $user@$Ip:$dir/datezip.zip
我已成功推送文件。但无法解压缩文件。
我尝试了ssh -t $ user @ $ Ip'cd $ dir;解压缩datezip.zip;'
有人可以纠正我还是有其他方法可以做到这一点?
谢谢