diff options
author | Johnathan Corgan | 2012-04-23 16:15:55 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-04-23 16:15:55 -0700 |
commit | 0f8503fd9c7bc63f316b18094fc0ffa5bd62a3c1 (patch) | |
tree | bdf5c6f083b11874cbbf9abbe166fd25d2ded9c0 /volk/libvector_replace.sh | |
parent | 539e909777cc888bfec6f18a0945699621c428b5 (diff) | |
parent | bb61c325dabfc80bbd8404b2892575948b77496b (diff) | |
download | gnuradio-0f8503fd9c7bc63f316b18094fc0ffa5bd62a3c1.tar.gz gnuradio-0f8503fd9c7bc63f316b18094fc0ffa5bd62a3c1.tar.bz2 gnuradio-0f8503fd9c7bc63f316b18094fc0ffa5bd62a3c1.zip |
Merge remote branch 'jblum-github/volk_work'
Diffstat (limited to 'volk/libvector_replace.sh')
-rwxr-xr-x | volk/libvector_replace.sh | 18 |
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 |