view bin/basicopt @ 530:0ab0820fd528

Red-colored prompt for root?
author edogawaconan <me@myconan.net>
date Fri, 17 Oct 2014 10:23:36 +0900
parents 5bafb912837e
children 7f5234a312f7
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
}