unix tar命令问题
发布网友
发布时间:2022-06-09 17:21
我来回答
共2个回答
热心网友
时间:2024-12-01 19:32
假设test目录路径为/home/name/test,依次执行:
tar cvf /tmp/test.tar /home/name/test
ftp
open 192.168.128.1
输入用户名(此处为study)
输入口令(此处为studypwd)
put /tmp/test.tar /home/study/work/
热心网友
时间:2024-12-01 19:32
tar cvf test.tar test
ftp -i -n <<EOF
open 192.168.128.1
user study studypwd
bin
put test.tar work/
by
EOF