확장자 삭제
#/bin/bash
SRC="hello.world"
RST=${SRC%.world}


정규표현식으로 인덱스 찾기
#/bin/bash
SRC="hello.world"
RST=`expr match $SRC '.*world'`

+ Recent posts