SUBROUTINE local_system( command ) !------------------------------------------------------------------------------! ! Actual revisions: ! ----------------- ! ! ! Former revisions: ! ----------------- ! $Id: local_system.f90 4 2007-02-13 11:33:16Z raasch $ ! RCS Log replace by Id keyword, revision history cleaned up ! ! Revision 1.4 2003/03/16 09:40:33 raasch ! Two underscores (_) are placed in front of all define-strings ! ! Revision 1.1 1997/09/03 06:27:27 raasch ! Initial revision ! ! ! Description: ! ------------ ! System calls for different operating systems !------------------------------------------------------------------------------! CHARACTER (LEN=*) :: command #if defined( __t3eb ) || defined( __t3eh ) || defined( __t3ej2 ) || defined( __t3ej5 ) CALL ISHELL( command ) #else CALL SYSTEM( command ) #endif END SUBROUTINE local_system