Standards-Version: 3.9.6 (no changes)
[ckermit.git] / debian / kermrc
1 ; This is /etc/kermit/kermrc
2 ; It is executed on startup if ~/.kermrc is not found.
3 ; See "man kermit" and http://www.kermit-project.org/ for details on
4 ; configuring this file, and /etc/kermit/kermrc.full
5 ; for an example of a complex configuration file
6
7 ; If you want to run additional user-specific customisations in
8 ; addition to this file, place them in ~/.mykermrc
9
10 ; Execute user's personal customization file (named in environment var
11 ; CKERMOD or ~/.mykermrc)
12
13
14 if def \$(CKERMOD) assign _myinit \$(CKERMOD)
15 if not def _myinit assign _myinit \v(home).mykermrc
16
17 xif exist \m(_myinit)  {                ; If it exists,
18     echo Executing \m(_myinit)...       ; print message,
19     take \m(_myinit)                    ; and TAKE the file.
20 }
21