Mercurial > ec-dotfiles
view bin/basicopt @ 623:0f0bdbd8d37d
Update syntax files
Additionally nginx repo fixed their cookie thingie.
author | nanaya <me@nanaya.pro> |
---|---|
date | Mon, 04 Mar 2019 20:01:03 +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 }