iT邦幫忙

0

[Linux 新手出航 1-7] Windows 上執行 Ubuntu - 測試基本參數5 ( cat ,grep)

  • 分享至 

  • xImage
  •  

目的


這篇主要講解一些基礎的指令,大致上預計要講的是
12. cat 指令
13. grep 指令

開頭依樣是在 c槽的 Linux_test 資料夾裡面測試
輸入指令: cd /mnt/c/Linux_test

cd /mnt/c/Linux_test

https://ithelp.ithome.com.tw/upload/images/20221108/20135862u0lUKQmdhI.png

Linux_test 資料夾內有兩個東西 test1 、 test2

https://ithelp.ithome.com.tw/upload/images/20221108/20135862r699MrwV98.png


cat 指令


在測試 cat 前
用記事本將 test1 寫上 "Try the cat order"
用記事本將 test2 寫上 "new information"

https://ithelp.ithome.com.tw/upload/images/20221109/20135862cHvynygLbS.png


cat 的功能用 Help 來看

輸入指令: cat --help

cat  --help
Usage: cat [OPTION]... [FILE]...
Concatenate FILE(s) to standard output.

With no FILE, or when FILE is -, read standard input.

功能
簡單來講就是顯示文件內容

  1. 顯示文件內容
  2. 顯示多個文件內容,並組合起來

用法
用法有一種

  1. cat 文件1 文件2 ..........

測試指令
看看 test1 的內容

  1. 輸入指令: cat test1
/mnt/c/Linux_test$ cat test1
Try the cat order

看看 test1 test2 的內容

  1. 輸入指令: cat test1 test2
/mnt/c/Linux_test$ cat test1 test2
Try the cat order
new information

https://ithelp.ithome.com.tw/upload/images/20221109/20135862MCGaKwgWrM.png



grep 指令


在測試 grep 前
用記事本將 test1 寫上 "Try the cat order"
用記事本將 test2 寫上 "new information"

https://ithelp.ithome.com.tw/upload/images/20221110/201358629bLV0JGhd7.png


grep 的功能用 Help 來看

輸入指令: grep --help

grep  --help
Usage: grep [OPTION]... PATTERN [FILE]...
Search for PATTERN in each FILE.

功能
簡單來講就探索文件內容 是否有指定的字串


用法
用法有一種

  1. grep 探索字串 文件1 文件2 ..........
grep 探索字串 文件1  文件2   ..........

測試指令
test1 內容為 "Try the cat order"
test2 內容為 "new information"

  1. 在 test1 和 test2 內探索字串 "or"
    輸入指令: grep or test1 test2
grep or test1 test2

https://ithelp.ithome.com.tw/upload/images/20221110/20135862QM6Q3n86eB.png


  1. 在 test1 和 test2 內探索字串 "Try"
    輸入指令: grep Try test1 test2
grep Try test1 test2

https://ithelp.ithome.com.tw/upload/images/20221110/20135862aMqMqooxtr.png


大致上 入門指令就到這裡 謝謝看到這裡。

Vim 的東西待補


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言