view bin/basicopt @ 731:4d037b0a9f41 default tip

[bashrc] Better FreeBSD compat with Windows Terminal Reference: https://github.com/microsoft/terminal/discussions/18332
author nanaya <me@nanaya.net>
date Wed, 08 Jan 2025 19:02:53 +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
}