view bin/basicopt @ 667:6887e66d83b4

[vim] The specialthing color is way better using the provided theme
author nanaya <me@nanaya.pro>
date Sat, 11 Dec 2021 18:28:16 +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
}