I want to watch the changes of the output
gsettings list-recursively|grep text-scal
which is
org.gnome.desktop.interface text-scaling-factor 1.0
com.canonical.Unity.Interface text-scale-factor 1.0
but if I try to watch it with
watch gsettings list-recursively|grep text-scal
I get no output, because the pipe seems to be the problem.
How can I still watch the changes?
You need to enclose the piped command in quotes as follows:
This will execute the command
gsettings list-recursively|grep text-scal
andwatch
it every two seconds. Note that the time interval is in seconds.Refer to watch's manual page for more.