1@ECHO OFF 2REM ======================================================================== 3REM Copyright 1988-2006 University of Washington 4REM 5REM Licensed under the Apache License, Version 2.0 (the "License"); 6REM you may not use this file except in compliance with the License. 7REM You may obtain a copy of the License at 8REM 9REM http://www.apache.org/licenses/LICENSE-2.0 10REM 11REM 12REM ======================================================================== 13 14REM Program: Authenticator Linkage Generator for DOS and Windows 15REM 16REM Author: Mark Crispin 17REM Networks and Distributed Computing 18REM Computing & Communications 19REM University of Washington 20REM Administration Building, AG-44 21REM Seattle, WA 98195 22REM Internet: MRC@CAC.Washington.EDU 23REM 24REM Date: 6 December 1995 25REM Last Edited:30 August 2006 26 27REM Erase old authenticators list 28IF EXIST AUTHS.C DEL AUTHS.C 29 30REM Now define the new list 31FOR %%D IN (%1 %2 %3 %4 %5 %6 %7 %8 %9) DO CALL MKAUTAUX %%D 32 33EXIT 0 34