~ubuntu-branches/ubuntu/saucy/ecb/saucy

« back to all changes in this revision

Viewing changes to ecb-images/klaus.sh

  • Committer: Bazaar Package Importer
  • Author(s): Joerg Jaspert
  • Date: 2004-09-01 22:15:18 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040901221518-0jfdt2apb2rj69ey
Tags: 2.27-1
And include latest Upstream too...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/bash
 
2
 
 
3
 
 
4
for file in `find . -name "*.xpm" -print $*`; do
 
5
    newname=`echo $file | sed -e "s|\(.*\)\.xpm$|\1.png|;"`
 
6
    convert $file $newname
 
7
done
 
8