[PD-cvs] externals/build/src search-doubled-externals.sh,NONE,1.1

Georg Holzmann grholzi at users.sourceforge.net
Fri Jan 12 19:18:32 CET 2007


Update of /cvsroot/pure-data/externals/build/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21476

Added Files:
	search-doubled-externals.sh 
Log Message:
helper script to search for doubled externals


--- NEW FILE: search-doubled-externals.sh ---
#!/bin/sh
#
# run this script to see doubled externals in the
# libdir and flatspace format
#
# these files can be removed from the flatspace
#
# (Georg Holzmann)

# all files
FILES=`ls *.c | sed s/"\.c"/"\.p\*"/g`

# search dir
# (should point to the directory where you build pd-extended)
SEARCH_PATH=../lib/pd/extra

for FILE in $FILES
do

  # this will also display the path (for debugging):
  #find $SEARCH_PATH -name $FILE

  # this will display the files, which can be deleted:
  find $SEARCH_PATH -name $FILE | sed -e s/"\.\."/""/g -e s/"\/.*\/"/""/g -e s/"\.pd_linux"/"\.c"/g

done






More information about the Pd-cvs mailing list