Linux Shell指令碼實現自動互動

來源:互聯網
上載者:User
方法一:(以OpenSSH編譯完成之後的 拷貝和產生key 為例)
#!/bin/bashDIR_PATH=$HOME/sshdfilecp sshd $DIR_PATH/sbincp scp sftp ssh ssh-add ssh-agent ssh-keygen ssh-keyscan $DIR_PATH/bincp sftp-server ssh-keysign $DIR_PATH/libexeccp sshd_config ssh_config $DIR_PATH/etcchmod 755 $DIR_PATH/var/emptyssh-keygen -t rsa1 -f ssh_host_key -N "" << EOFyEOFssh-keygen -t rsa -f ssh_host_rsa_key -N "" << EOFyEOFssh-keygen -t dsa -f ssh_host_dsa_key -N "" << EOFyEOFcp ssh_host_* $DIR_PATH/etc

方法二:(以FTP使用者自動登入為例)
#!/usr/bin/expectset file [lindex $argv 0];set timeout -1;  spawn ftp 192.168.1.***  expect "Name"  send "username***\r"  expect "Password"  send "passwd***\r"expect "ftp>"send "hash\r"expect "*ftp>*"send "put $file\n"expect "*ftp>*"send "bye\r"expect "*Goodbye*"expect eofexit

【測試】:./autoftp.sh filename

【效果】:自動登陸FTP使用者”username***“, 將”filename“ 檔案上傳至伺服器。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.