我目前正在树莓派中编写一个程序,该程序将允许我查看文件内部并以颜色显示我输入的内容我认为我需要做一些事情,--colour
但我不知道该做什么 100%
这是我当前的代码。
#!/bin/bash
echo "Enter the name of the file to search within"
read file
echo "Enter what you would like to look for"
read search
然后我希望有 grep 行。感谢您的任何意见!
答案1
grep --colour=always $search $file
如果这些是变量的名称,这应该可行。