/ Published in: Bash
Expand |
Embed | Plain Text
NAME=`echo "$FILE" | cut -d'.' -f1` EXTENSION=`echo "$FILE" | cut -d'.' -f2`
Comments
Subscribe to comments
You need to login to post a comment.
yuconner on 10/31/06
1 person have marked this snippet as a favorite
NAME=`echo "$FILE" | cut -d'.' -f1` EXTENSION=`echo "$FILE" | cut -d'.' -f2`
Subscribe to comments
You need to login to post a comment.
Have you ever tried the bash built in approach for doing this?
see: http://wooledge.org:8000/BashFAQ#head-ccf9a79c6469bbd2a8ebc93b6e82aa682991cc58
regards, Alex.