• This project
    • Loading...
  • Sign in

K'van / Tales of MajEyal · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • t-engine4
  • utils
  • base64_images.sh
  • for push events
    f90c7a5f
    DarkGod authored
    2013-11-11 19:13:06 +0100  
    Browse Files »
base64_images.sh 166 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
#!/bin/bash

event=$1
shift 1

for img in $*; do
	data=`base64 "$img"`
	echo "core.display.virtualImage('/data/gfx/shockbolt/$event/$img', mime.unb64[[$data]])"
done