| from small one page howto to huge articles all in one place 
 
 poll results
 
 Last additions:
 
 May 25th. 2007:
 
 
 April, 26th. 2006:
 
 
 | You are here: System->Tips and Tricks 
 .  
 
 Renaming FilesOften files need to be converted from uppercase to lowercase. Sometimes this is a side effect of moving from case-insensitive file systems to case-sensitive ones. Here's a quick shell command that will convert everything in the current directory from uppercase to lowercase. Code Listing 1 for n in *; do mv $n `echo $n | tr '[ :upper:]' '[ :lower:]'`; done From http://www.gentoo.org/news/en/gwn/20040510-newsletter.xml
 rate this article:
 current rating: average rating: 1.2 (43 votes) (1=very good 6=terrible) Your rating:back
 
 
 
 
 |