Update "missing" (automake) script to a later version
[geda-pcb/pcjc2.git] / lib / ListLibraryContents.sh.in
blob9e453b738df09a543af20305852d8958b87a85c0
1 #!/bin/sh
3 # COPYRIGHT
4 #
5 # PCB, interactive printed circuit board design
6 # Copyright (C) 1994,1995,1996 Thomas Nau
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 # Contact addresses for paper mail and Email:
23 # Thomas Nau, Schlehenweg 15, 88471 Baustetten, Germany
24 # Thomas.Nau@rz.uni-ulm.de
27 # list the contents of a library
29 # usage: ListLibraryContents.sh [path] file
31 Usage()
33 echo "usage: $0 [path] file" >&2
34 exit 1
37 SearchPath=.
38 case $# in
39 1) File="$1";;
40 2) SearchPath=`echo "$1" | tr ':' ' '`; File="$2";;
41 *) Usage;;
42 esac
44 for dir in $SearchPath; do
45 name=$dir/$File.contents
46 if [ -r $name ]; then
47 cat $name
49 done