Remove File Extension using sed
Get just the file title without the extension in a variable.
file_name=$1
file_title=`echo $1|sed 's/\..\{3\}$//'`
Get just the file title without the extension in a variable.
file_name=$1
file_title=`echo $1|sed 's/\..\{3\}$//'`
January 24th, 2008 10:47
This doesn’t work