That yields a nice:
Code:
Sep 20 01:25:29 nickel: ( 2223.266 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.adds" , matches "\.(?!kobo|adobe).*?"
Sep 20 01:25:29 nickel: ( 2223.280 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.foo" , matches "\.(?!kobo|adobe).*?"
Sep 20 01:25:29 nickel: ( 2223.282 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.fseventsd" , matches "\.(?!kobo|adobe).*?"
Sep 20 01:25:29 nickel: ( 2223.296 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.kobo/certificates" , matches "(.kobo|koboExtStorage)/certificates"
Sep 20 01:25:29 nickel: ( 2223.297 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.kobo/dict" , matches "(.kobo|koboExtStorage)/dict"
Sep 20 01:25:29 nickel: ( 2223.306 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.kobo/kepub" , matches "(.kobo|koboExtStorage)/kepub"
Sep 20 01:25:29 nickel: ( 2223.317 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.niluje" , matches "\.(?!kobo|adobe).*?"
Sep 20 01:25:29 nickel: ( 2223.320 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.Spotlight-V100" , matches "\.(?!kobo|adobe).*?"
Sep 20 01:25:29 nickel: ( 2223.322 @ 0x16d0b30 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.Trashes" , matches "\.(?!kobo|adobe).*?"
In case (not) ignoring kobo & ade happens to be meaningless, \\..*? is enough:
Code:
Sep 20 01:12:26 nickel: ( 1440.373 @ 0x3585888 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.adds" , matches "\..*?"
Sep 20 01:12:26 nickel: ( 1440.375 @ 0x3585888 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.adobe-digital-editions" , matches "\..*?"
Sep 20 01:12:26 nickel: ( 1440.380 @ 0x3585888 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.foo" , matches "\..*?"
Sep 20 01:12:26 nickel: ( 1440.382 @ 0x3585888 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.fseventsd" , matches "\..*?"
Sep 20 01:12:26 nickel: ( 1440.383 @ 0x3585888 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.kobo" , matches "\..*?"
Sep 20 01:12:26 nickel: ( 1440.385 @ 0x3585888 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.niluje" , matches "\..*?"
Sep 20 01:12:26 nickel: ( 1440.387 @ 0x3585888 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.Spotlight-V100" , matches "\..*?"
Sep 20 01:12:26 nickel: ( 1440.389 @ 0x3585888 / ui.debug) void SyncFileSystemCommand::findFilesToParse(const QString&, QStringList&) skipping "/mnt/onboard/.Trashes" , matches "\..*?"
ProTip: DO NOT use a simple ".*" or variations thereof, that'll of course ignore ALL THE THINGS

. (Which will then in turn proceed to let nickel
DELETE ALL THE THINGS ;p).
I suddenly have a lot more free space on my H2O

.