Repository 'spolpred'
hg clone https://toolshed.g2.bx.psu.edu/repos/nml/spolpred

Changeset 1:d2d1d48c8e3e (2015-12-18)
Previous changeset 0:5402893569cb (2015-12-15)
Commit message:
fix_bug with names that contain spaces
modified:
spolpred.sh
b
diff -r 5402893569cb -r d2d1d48c8e3e spolpred.sh
--- a/spolpred.sh Tue Dec 15 14:19:42 2015 -0500
+++ b/spolpred.sh Fri Dec 18 11:18:28 2015 -0500
[
@@ -5,6 +5,6 @@
 
 spolpred $@
 
-sed -i s/^.*\t/$name/ output.txt
+sed -i "s/^[^\t]*/$name/" output.txt
 
 exit 0