#!/bin/bash # # Remove all those annoying ^M characters that Winblows editor's like to add # from all files in the current directory and all subdirectories. # # Written by: Jonathan Haase. # # UPDATE: 7/31/2001: fix so that it doesn't touch things in the images directory # # UPDATE: 12/15/2003: Fix so that it doesn't touch any "non-text" files # find . > FILELIST.$$ grep -sv FILELIST FILELIST.$$ > FILELIST2.$$ grep -sv $(basename $0) FILELIST2.$$ > FILELIST.$$ grep -sv "^\.$" FILELIST.$$ > FILELIST2.$$ file -f FILELIST2.$$ |grep text | grep -v icon_textbox_search.gif | sed -e 's/^\([^\:]*\)\:.*$/\1/' > FILELIST file -f FILELIST2.$$ |grep -sv text | sed -e 's/^\([^\:]*\)\:.*$/Not Modifying file: \1/' rm FILELIST2.$$ rm FILELIST.$$ for i in $(cat FILELIST); do if [ -f $i ]; then cat $i | tr -d '\r' > $i.tmp mv $i.tmp $i fi done rm FILELIST rm.submit();'> The Main www.mageia.org Websitegit
aboutsummaryrefslogtreecommitdiffstats
path: root/langs/it/about/code-of-conduct.it.lang
diff options
context:
space:
mode:
authorFilip Komar <filip@mageia.org>2014-03-16 13:55:38 +0000
committerFilip Komar <filip@mageia.org>2014-03-16 13:55:38 +0000
commitde07ef83d4ceb206a30d7bf6dbab6323bc0b02b1 (patch)
tree2b5e538176b9d27d9a008957b92a631956cd1480 /langs/it/about/code-of-conduct.it.lang
parentcf636c606e93ed522ef2da9f8e41bc4c2f70fd1c (diff)
downloadwww-de07ef83d4ceb206a30d7bf6dbab6323bc0b02b1.tar
www-de07ef83d4ceb206a30d7bf6dbab6323bc0b02b1.tar.gz
www-de07ef83d4ceb206a30d7bf6dbab6323bc0b02b1.tar.bz2
www-de07ef83d4ceb206a30d7bf6dbab6323bc0b02b1.tar.xz
www-de07ef83d4ceb206a30d7bf6dbab6323bc0b02b1.zip
fixed proper handling of fuzzy strings in reports