summaryrefslogtreecommitdiff
path: root/volk/libvector_replace.sh
diff options
context:
space:
mode:
Diffstat (limited to 'volk/libvector_replace.sh')
-rwxr-xr-xvolk/libvector_replace.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/volk/libvector_replace.sh b/volk/libvector_replace.sh
deleted file mode 100755
index e1940c00f..000000000
--- a/volk/libvector_replace.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-cd $1
-files=`ls`
-for file in $files
-do
- sed 's/libvector/volk/g' < $file > tempfile
- sed 's/LIBVECTOR/VOLK/g' < tempfile > $file
-done
-for file in $files
-do
- echo $file > tempfile
- newfile=`sed 's/libvector/volk/g' < tempfile`
- if (test "$file" != "$newfile"); then
- mv $file $newfile
- echo "changed $file to $newfile"
- fi
-done