~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to arts/examples/checknames.sh

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
echo "This script searches for improperly named .arts structures:" >&2
 
3
 
 
4
for i in *.arts
 
5
do
 
6
        grep ^name=$(echo $i|sed s/.arts//g) $i >/dev/null || echo $i
 
7
done
 
8
 
 
9
echo "... done" >&2