#!/bin/bash
INPUT_FILE=$1
FILE_NAME=${INPUT_FILE%.*}
FILE_EXT=${INPUT_FILE##*.}
echo $FILE_NAME
echo $FILE_EXT
A good reference for bash script is Advanced Bash Scripting Guide. I referred to the string manipulation section to create the above snippet.
No comments:
Post a Comment