Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个脚本来完成我正在编写的这个 GUI。
例如,您将如何执行第 3 行的变量?
例如:
var1='1' var2='2' var3='3'
从终端,我想在我编写的脚本中执行第 3 行。
我该怎么做?
假设你的脚本是myscript.sh
myscript.sh
eval `head -n3 myscript.sh | tail -n1`
编辑
按要求解释:
head -n 3 myscript.sh
|
tail -n1
eval()