linux shell互動命令學習

2021-06-09 14:57:04 字數 669 閱讀 8140

shell

互動模式

... 1

一、shell

工作模式

... 2

二、read互動命令使用... 2

2.1 read 指定變數... 2

2.2 read 預設變數... 3

2.3 read 讀取多行... 3

2.4 read 計時器... 4

2.5 read 計數器... 4

2.6 read匹配方向鍵... 5

2.7read

默讀(輸入不顯示)

... 6

2.8read

讀檔案(

自動化)7

三、互動自動化命令... 8

3.1 shell互動自動化(重定向)... 8

3.2 shell互動自動化(管道)... 9

3.3 shell互動自動化(expect)... 9

3.3.1 expect概述

... 9

3.3.2 expect工作原理... 9

3.3.3 expect安裝... 9

3.3.4 expect簡單示例一(改變sh)... 10

3.3.5 expect示例二(ssh登入)... 11

3.3.6參考資源... 12

Linux Shell自動互動 expect

expect是乙個免費的程式設計工具,用來實現自動的互動式任務,而無需人為干預。注意 在使用之前需要安裝 expect 在使用 expect 時,我們基本是操作下面幾個命令 命令作用說明 spawn 啟動新程序 expect 從程序接收字串 send 用於向程序傳送字串 interact 用於退出自...

Linux Shell命令 tr命令

在linux常用的命令中,我們可以通過使用tr,非常容易地實現 sed 的許多最基本功能。1 定義 日常操作中,tr用來從標準輸入中通過替換或刪除操作進行字元轉換。2 使用格式 tr c d s string1 to translate from string2 to translate to in...

linux shell基礎命令

建立檔案 touch file1 複製檔案file1成file2 cp file1 file2 複製整個目錄的內容 cp r file1 file2 建立檔案硬連線 cp l file1 file2 建立檔案軟連線 cp s file1 file2 重新命名檔案 mv file1 file2 建立目...