📜  grep 到变量 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:50.635000             🧑  作者: Mango

代码示例1
VAR=`command-name`
VAR="`grep word /path/to/file`"
## or ##
 
VAR=$(command-name)
VAR="$(grep word /path/to/file)"