Linux下將資料檔案的指定域讀取到shell指令碼中

來源:互聯網
上載者:User

這個例子說明了怎樣在Linux下shell指令碼中從資料檔案讀取特定的域(field)並進行操作。例如,假設檔案employees.txt的格式是{employee-name}:{employee-id}:{department-name},以冒號進行劃分,如下所示。

$ cat employees.txt
Emma Thomas:100:Marketing
Alex Jason:200:Sales
Madison Randy:300:Product Development
Sanjay Gupta:400:Support
Nisha Singh:500:Sales

下面的shell指令碼說明了如何從這個employee.txt檔案中讀取特定的域(field)。

$ vi read-employees.sh
#!/bin/bash
IFS=:
echo "Employee Names:"
echo "---------------"
while read name empid dept
do
    echo "$name is part of $dept department"
done < ~/employees.txt

賦予指令碼可執行許可權後執行該指令碼

$ chmod u+x read-employees.sh
$ ./read-employees.sh
Employee Names:

註:在linux中shell是一個不錯的命令方便了我們的使用,同時也方便的駭客們的使用了,所以大家要注意在shell的安全與許可權上的設定哦。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.