thinlinc-client-bin/tlclient.sh

15 lines
301 B
Bash
Raw Normal View History

2025-09-03 21:53:06 +02:00
# -*- mode: shell-script; coding: utf-8 -*-
#
# Copyright 2002-2014 Cendio AB.
# For more information, see http://www.cendio.com
new="/opt/thinlinc/bin"
case "${PATH}" in
${new}:*|*:${new}:*|*:${new}|${new}) ;;
"") PATH="${new}" ;;
*) PATH="${PATH}:${new}" ;;
esac
unset new
export PATH