- 20 KDE 4.2 Tips (Cached)
- To reset default KDE4 plasma widgets:
kquitapp plasma
rm ~/.kde4/share/config/plasma-appletsrc
plasma &
- Useful man commands:
- intro(2)
- signal(7)
- environ(7)
- Loop over find results:
find . -name 'filenames' | (while read FNVAR; do
<command> "$FNVAR";
done)
- Search for specific text in files with line numbers and exclude backup files:
grep -Rn "<text>" * | grep -v "~"