#!/bin/bash
  
  clear
  echo -e
  echo -en "\E[32;1m Cating image vendor extra header... \E[32;0m"
  echo -e
  ls STOCK/*.img
  echo -e
  echo -en "\033[1m Input image <name>: \033[0m"
  tput sgr0
  read INPUT
  echo -e
  
  mv -v PROJECT/$INPUT PROJECT/$INPUT.tmp

  cat STOCK/IVEH_$INPUT PROJECT/$INPUT.tmp > PROJECT/$INPUT
  echo -e
  echo -e
  
  rm -fv PROJECT/$INPUT.tmp
  
  echo
  echo -en "\033[1m Finished \033[0m"
  echo
  tput sgr0
  echo
  echo "Press Enter to continue"
  read enterKey
