mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
8 lines
282 B
Fish
8 lines
282 B
Fish
function dataUrl --description "Create a data URL from a file"
|
|
set mimeType (file -b --mime-type $argv)
|
|
if string match -r '^text/' $mimeType
|
|
set mimeType "$mimeType;charset=utf-8"
|
|
end
|
|
echo "data:$mimeType;base64,(openssl base64 -in $argv | tr -d '\n')"
|
|
end
|