OiPenguin;354742 Wrote: 
> Everything appears to be working after upgrade! I wish I'd notice the
> more recent version right away. This is the last lines of the log:
> > 
Code:
--------------------
  >   > 
  > [08-10-29 21:43:56.9220] Slim::Schema::DBI::removeStaleDBEntries (91) 
Finished stale cleanup for class Slim::Schema::Genre / genreTracks
  > [08-10-29 21:43:56.9365] Slim::Music::Import::endImporter (594) Completed 
cleanupStaleEntries Scan in 77 seconds.
  > [08-10-29 21:43:57.3005] Slim::Music::Import::runScanPostProcessing (410) 
Starting Database optimization.
  > [08-10-29 21:43:57.3009] Slim::Schema::optimizeDB (371) Start 
schema_optimize
  > [08-10-29 21:44:25.1263] Slim::Schema::optimizeDB (390) End schema_optimize
  > [08-10-29 21:44:25.1286] Slim::Music::Import::endImporter (594) Completed 
dbOptimize Scan in 27 seconds.
  > [08-10-29 21:44:25.1298] Slim::Music::Import::runScanPostProcessing (418) 
Finished background scanning.
  > 
--------------------
> > 
> 
> Now I need to change back the file extensions. Exchanging .wma with
> .ignore will only add .wma as well, right? What will be the
> appropriate command?
> > 
Code:
--------------------
  >   > 
  > find /home/felles/Media/Musikk/Nedlastet/Musikk -type f -name "*.wma" -exec 
mv "{}" "{}.ignore" \;
  > 
--------------------
> > 

hmmm. this one should do it:

find /home/felles/Media/Musikk/Nedlastet/Musikk -type f -name
"*.wma.ignore" | while read f ; do mv "$f" "${f%.ignore}" ; done

removes ".ignore" from all "*.wma.ignore" files.

Disclamer...ah you now ;-)

kind regards,
Markus


-- 
schiegl
------------------------------------------------------------------------
schiegl's Profile: http://forums.slimdevices.com/member.php?userid=6654
View this thread: http://forums.slimdevices.com/showthread.php?t=53941

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/unix

Reply via email to