我想观察输出的变化
gsettings list-recursively|grep text-scal
即
org.gnome.desktop.interface text-scaling-factor 1.0
com.canonical.Unity.Interface text-scale-factor 1.0
但如果我试着用
watch gsettings list-recursively|grep text-scal
我没有得到任何输出,因为管道似乎是问题所在。
我怎样才能看到这些变化?
答案1
您需要将管道命令括在引号中,如下所示:
watch -n 2 'gsettings list-recursively|grep text-scal'
这将每两秒执行gsettings list-recursively|grep text-scal
一次该命令。请注意,时间间隔以秒为单位。watch
參閱手表的手册页了解更多信息。