#!/bin/sh
# vim: set filetype=sh :
#        file: /usr/share/shellia/ia
#   copyright: Bernd Schumacher <bernd.schumacher@hpe.com> (2007-2018)
#     license: GNU General Public License, version 3
# description: ia - load all shellia libraries

if [ "${ia_prefix:=}" ]; then
  eval  "[ \"\${${ia_prefix}_already_sourced:=}\" ] && return"
  eval "$(
  ( [ -f ia ] && cat ia || cat /usr/share/shellia/ia ) |
  sed -e "1,/^# ia_prefix change starts here/ d" -e "s/ia_/${ia_prefix}_/g" -e "s/ia()/${ia_prefix}()/g"
  )"
  return
fi

# ia_prefix change starts here

[ "${ia_already_sourced:=}" ] && return || ia_already_sourced=1

[ -f ia.log ] && . ./ia.log || . /usr/share/shellia/ia.log
[ -f ia.check ] && . ./ia.check || . /usr/share/shellia/ia.check
[ -f ia.debug ] && . ./ia.debug || . /usr/share/shellia/ia.debug
[ -f ia.interactive ] && . ./ia.interactive || . /usr/share/shellia/ia.interactive

