source: palm/trunk/SOURCE/local_system.f90 @ 4784

Last change on this file since 4784 was 4677, checked in by raasch, 4 years ago

files re-formatted to follow the PALM coding standard

  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1!> @file local_system.f90
2!!--------------------------------------------------------------------------------------------------!
3! This file is part of the PALM model system.
4!
5! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General
6! Public License as published by the Free Software Foundation, either version 3 of the License, or
7! (at your option) any later version.
8!
9! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
10! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11! Public License for more details.
12!
13! You should have received a copy of the GNU General Public License along with PALM. If not, see
14! <http://www.gnu.org/licenses/>.
15!
16! Copyright 1997-2020 Leibniz Universitaet Hannover
17!--------------------------------------------------------------------------------------------------!
18!
19! Current revisions:
20! -----------------
21!
22!
23! Former revisions:
24! -----------------
25! $Id: local_system.f90 4677 2020-09-14 07:55:28Z suehring $
26! file re-formatted to follow the PALM coding standard
27!
28! 4360 2020-01-07 11:25:50Z suehring
29! Corrected "Former revisions" section
30!
31! 3655 2019-01-07 16:51:22Z knoop
32! Corrected "Former revisions" section
33!
34! Revision 1.1  1997/09/03 06:27:27  raasch
35! Initial revision
36!
37!
38! Description:
39! ------------
40!> System calls for different operating systems
41!--------------------------------------------------------------------------------------------------!
42 SUBROUTINE local_system( command )
43
44
45    CHARACTER (LEN=*) ::  command !<
46
47    CALL SYSTEM( command )
48
49 END SUBROUTINE local_system
Note: See TracBrowser for help on using the repository browser.