BASH-Parameter extension
BASH -Parameter Extension
root@localhost:/root> echo "AA/BB/CC/DD" >> testfile
root@localhost:/root> cat testfile
AA/BB/CC/DD
root@localhost:/root>
Ask to replace DD at the back
root@localhost:/root> TXT=`cat testfile` ; echo ${TXT%%DD}
AA/BB/CC/
root@localhost:/root>
Thinking:
http://www.linuxsir.org/bbs/forum60.html