自動建立samba目錄的shell指令碼
1 shell指令碼實現ssh自動登入遠端伺服器
spawn 開啟一個子程式
expect 預期收到的字元
send 傳送字元
interact 互動
#!/usr/bin/expect
spawn ssh root@192.168.22.194
expect "*password:"
send "123\r"
expect "*#"
interact
2 如何向expect指令碼傳遞引數
expect是通過set <變數名稱> [lindex argv 0]
#!/usr/bin/expect
set timeout 10
set username [lindex $argv 0]
set password [lindex $argv 1]
set hostname [lindex $argv 2]
spawn ssh-copy-id -i .ssh/id_rsa.pub $username@$hostname
expect "yes/no"
send "yes\r"
expect "password:"
send "$password\r"
expect eof
3 如何解決echo時重定向到檔案時permission denied
加一個“ sh -c ”就可以把許可權指定到整條shell了。如:
sudo sh -c "echo '[yaf]' > /usr/local/php/etc/include/yaf.ini"
另一種方法是利用管道和 tee 命令,該命令可以從標準輸入中讀入資訊並將其寫入標準輸出或檔案中,tee 命令de “-a” 選項的作用等同於 “>>” 命令,如:
echo “xxxx” | sudo tee -a test.txt
4 指令碼示例
#!/usr/bin/expect
set HostIp [lindex $argv 0]
set UserId [lindex $argv 1]
set UserPwd [lindex $argv 2]
set new_smb_folder [lindex $argv 3]
set path_of_samba [lindex $argv 4]
set timeout -1
spawn ssh $UserId@$HostIp
expect "*?password:" { send "$UserPwd\r"}
expect "$ " { send "sudo mkdir -p '$path_of_samba'\r" }
expect ": " { send "$UserPwd\r" }
expect "$ " { send "echo -e '$new_smb_folder' | sudo tee -a /etc/samba/smb.conf\r"}
expect "$ " { send "sudo service smbd restart\r" }
呼叫:
full_string="
[$name_of_sambaRoot]
path = $path_of_sambaRoot
available = yes
browseable = yes
public = yes
writable = yes
"
./enableSamba.expect "$ipAddress" "$UserId" "$UserPwd" "$full_string" "$path_of_sambaRoot"
5 指令碼示例,寫成指令碼用expect -f script.sh執行
echo "spawn scp auto_operation_remote.sh $l_user@$l_machine_ip:/tmp/
expect \"*want to continue connecting (yes/no)*\" {send \"yes\r\"}
expect \"*password*\" {send \"$l_rsync_sudo_pwd\r\"}
expect eof" > temp.sh
expect -f temp.sh > rsync_error_tmp.log
常見錯誤:
expect: spawn id exp5 not open
while executing
"expect "password" {send "123456\r"}"
(file "temp.sh" line 3)
原因:特定的機器上,因為之前已經ssh_key加入信任,因此scp操作不需要輸入密碼。
相關文章
- 自動化指令碼安裝mysql shell指令碼範例指令碼MySql
- 建立互動式shell指令碼對話方塊指令碼
- shell 備份檔案指令碼+自動清理指令碼
- 案例八:Shell自動化管理賬號指令碼指令碼
- 如何讓shell指令碼自殺指令碼
- [shell]shell指令碼實現每天自動抽取資料插入hive表指令碼Hive
- shell指令碼-免互動指令碼
- shell指令碼技巧—建立和清空檔案指令碼
- Samba 系列(三):使用 Windows 10 的 RSAT 工具來管理 Samba4 活動目錄架構SambaWindows架構
- 自動定時備份 mysql 資料庫 的 shell 指令碼MySql資料庫指令碼
- 用於自動監控磁碟使用情況的 Shell 指令碼指令碼
- word怎麼自動生成目錄?Word自動生成目錄的方法教程
- linux透過shell指令碼實現ssh互動式自動化Linux指令碼
- shell指令碼指令碼
- 自動批次實現linux機器ssh免密shell指令碼Linux指令碼
- 自動輸入密碼使用root許可權開啟shell指令碼密碼指令碼
- WINDOWS自動打包目錄指令碼 複製到遠端備份伺服器儲存Windows指令碼伺服器
- linux常用的shell指令碼Linux指令碼
- shell指令碼案例指令碼
- 常用shell指令碼指令碼
- Linux Shell指令碼Linux指令碼
- shell擴充套件——免互動指令碼套件指令碼
- shell指令碼(6)-shell陣列指令碼陣列
- 在活動目錄裡面建立物件物件
- windows 批處理備份目錄指令碼Windows指令碼
- 程式碼上線的shell指令碼指令碼
- 自動解析 github倉庫的目錄列表Github
- Sqlserver自動查詢缺失索引及拼出建立索引的語句的指令碼SQLServer索引指令碼
- specjvm自動化指令碼JVM指令碼
- 自動備份指令碼指令碼
- linux shell指令碼中 =~ 的作用Linux指令碼
- shell 指令碼加密 | shc指令碼加密
- 執行shell指令碼指令碼
- Shell 指令碼語句指令碼
- 初識shell指令碼指令碼
- 【指令碼】shell語法指令碼
- shell 指令碼寫法:指令碼
- 如何加密shell指令碼加密指令碼
- shell指令碼總結指令碼