在FORTRAN程序中使用shell命令

原来FORTRAN语言中,也可以使用linux的shell命令,长见识了

 

 

        program test

        call system('echo "world" > a.txt')
        call system('echo "hello" > b.txt')
        call system('cat a.txt >> b.txt')
        call system('cat b.txt')

        end


 

结果:

[root@cloud zlt]# gfortran -o test test.f
[root@cloud zlt]# ./test
hello
world


 

你可能感兴趣的:(linux,shell,System,语言,fortran)