thinlinc-client-bin/tlclient.csh

24 lines
414 B
Tcsh
Raw Normal View History

2025-09-03 21:53:06 +02:00
# Copyright 2002-2014 Cendio AB.
# For more information, see http://www.cendio.com
if (! $?PATH) then
setenv PATH ""
endif
set new="/opt/thinlinc/bin"
switch ($PATH)
case "${new}:*":
case "*:${new}:*":
case "*:${new}":
case "${new}":
breaksw
case "":
setenv PATH "${new}"
breaksw
case "*":
setenv PATH "${PATH}:${new}"
breaksw
endsw
unset new