view bin/basicopt @ 624:ab58f083b2bf

Indent 2 for typescripts
author nanaya <me@nanaya.pro>
date Thu, 23 May 2019 10:38:50 +0900
parents 7f5234a312f7
children
line wrap: on
line source

#!/bin/sh
get_filename() {
	printf '%s\n' "$*" | sed -e 's/^\(.*\)\.[^.]*$/\1/'
}
get_extension() {
	if [ -n "$(printf '%s\n' "$*" | sed -e 's/^[^.]*//')" ]; then
		printf '%s\n' "$*" | sed -e 's/^.*\(\.[^.]*$\)/\1/'
	else
		printf '%s\n' ""
	fi
}