File: ishell.F

package info (click to toggle)
aces3 3.0.6-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 82,460 kB
  • sloc: fortran: 225,647; ansic: 20,413; cpp: 4,349; makefile: 953; sh: 137
file content (27 lines) | stat: -rw-r--r-- 727 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

#if defined(_UNICOS) || defined(_IRIX)
c Use system intrinsic
c (use -craylibs flag on SGI link)
#include "return.f"
#else
      integer function ishell(string)
      character*(*) string
      character*1 achar
      integer c_system
      external c_system
      character*80 cmd
      if ( len(string) .lt. 80 ) then
         cmd = string//achar(0)
         ishell = c_system(cmd)
      else
         print *, '@ISHELL: The command buffer is only 80 characters.'
         print *, '         exiting while trying to execute: ',
     &            '(string between arrows)'
         print '(3a)', '-->',string,'<--'
         call c_exit(1)
      end if
      return
      end

#endif /* defined(_UNICOS) || defined(_IRIX) */