view bin/basicopt @ 746:6b7f6f09b8d1 default tip

[vimrc] fix php syntax highlight Example file: https://github.com/ppy/osu-web/blob/e23658f45ac2e85d78bd339947e0d1cee57629c6/app/Libraries/BBCodeFromDB.php (around the end)
author nanaya <me@nanaya.net>
date Wed, 29 Oct 2025 12:28:45 +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
}