1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-06-18 05:06:38 +02:00

[bash] rename bash/rc and bash/bash.d

This commit is contained in:
Eric-Teunis de Boone 2022-02-10 20:07:37 +01:00
parent f67517fdec
commit 6b0d6af2f8
10 changed files with 8 additions and 6 deletions

View file

@ -0,0 +1,18 @@
#!/bin/bash
function data_url() {
if [ -z "$1" ]; then
cat << EndOfMessage
Create a data URL that can be directly used in HTML.
Usage: data_url <path_to_file>
EndOfMessage
return
fi
local mime_type base64
mime_type=$(file -b --mime-type "$1")
if [[ "$mime_type" == 'image/svg' ]]; then
mime_type='image/svg+xml'
fi
base64=$(base64 "$1")
echo "data:$mime_type;base64,$base64";
}