edit settings
tracker-preferences
Stop and delete DB
tracker-control -r
edit /etc/xdg/autostart/tracker-miner-fs.desktop
and
edit /etc/xdg/autostart/tracker-store.desktop
and set
X-GNOME-Autostart-enabled=false
edit settings
tracker-preferences
Stop and delete DB
tracker-control -r
edit /etc/xdg/autostart/tracker-miner-fs.desktop
and
edit /etc/xdg/autostart/tracker-store.desktop
and set
X-GNOME-Autostart-enabled=false
tasksel install desktop --new-install
diff -u -B <(grep -vE '^\s*(#|$)' /path/to/file.1) <(grep -vE '^\s*(#|$)' /path/to/file.2)
sed '/^$/d' /path/to/input/file.txt > output.txt grep -v '^$' /path/to/input/file.txt > output.txt
#!/bin/bash files="/path/to/input/files/*.txt" for i in $files do sed '/^$/d' $i > $i.out mv $i.out $i done
#!/bin/bash files="/path/to/input/files/*.txt" for i in $files do sed '/^ *$/d' $i > $i.out mv $i.out $i done