Tim Jackson - 2009-08-29

Further related problem from https://bugzilla.redhat.com/show_bug.cgi?id=520064

Steps to Reproduce:
-------------------
#!/bin/bash
#creating data file
echo ".rande" > test2.txt
#running replace (with -w option)
rpl -w "rande" "grande" test2.txt
#word not changed (grep returns 0 lines)
grep grande test2.txt;
#grep catch correctly word boundaries
grep -w rande test2.txt;

Actual results:
---------------
change not made
'.rande' -> rpl -w "rande" "grande" -> '.rande'

Expected results:
-----------------
'rande' replaced by 'grande'
'.rande' -> rpl -w "rande" "grande" -> '.grande'