從unix的shell script呼叫fortran跑迴圈 - Linux

Daph Bay avatar
By Daph Bay
at 2021-08-12T17:40

Table of Contents

※ 引述《bearching (Exploring inspirations)》之銘言:
: ※ [本文轉錄自 Fortran 看板 #1X58vrGJ ]
: 作者: bearching (Exploring inspirations) 看板: Fortran
: 標題: [問題] unix的shell script呼叫fortran跑迴圈
: 時間: Thu Aug 12 10:58:59 2021
: 我是fortran的超超超超新手
: 所以想要請問一下,
: 我平常是需要遠端連到unix上,用shell script跑程式,
: 然後這個程式會呼叫fortran的程式進來跑資料
: 我的問題可能滿籠統的,因為其實也不知該從何問起XD
: 就是我想在shell script寫個迴圈,
: 假設i 是我的變數好了
: for i in {1..10}這樣
: 那我呼叫的fortran
: PGM="abc.f"
在 shell 呼叫外部程式,以 php 為例
PGM="/path/to/program/abc.php"
php $PGM
或者直接寫成
php /path/to/program/abc.php

: 請問一下在這個abc.f裡面直接把loop的變數$i寫進去
一樣以 php 為例

PGM="/path/to/program/abc.php $i"
php $PGM

: 那我在執行shell script的時候,
: 呼叫abc.f的時候,能夠順利執行嗎?
: 不好意思因為真的很不熟悉fortran跟unix,問的問題可能很笨
: 再麻煩各位了,謝謝
你可能要先建個 lab ,跑看看再來問會比較具體一點

fortran 應該可以在 linux 跑吧

剛爬文看 fortran 是編譯程式,而 php 是直譯程式

因此 fortran 的作法就不會是

php $PGM 這種

會比較偏 make 這種

程式寫完要先 compile 成 binary 再執行

--
Tags: Linux

All Comments

Jacky avatar
By Jacky
at 2021-08-14T19:06
管他編譯或直譯, 一樣都吃參數就好.
Delia avatar
By Delia
at 2021-08-16T20:31
另外, PGM="/path/to/program/abc.php $i" ; php $PGM
Edith avatar
By Edith
at 2021-08-18T21:57
改 PGM="/path/to/program/abc.php"; php "$PGM" "$i"
好像好一些.

從unix的shell script呼叫fortran跑迴圈

Vanessa avatar
By Vanessa
at 2021-08-12T11:00
※ [本文轉錄自 Fortran 看板 #1X58vrGJ ] 作者: bearching (Exploring inspirations) 看板: Fortran 標題: [問題] unix的shell script呼叫fortran跑迴圈 時間: Thu Aug 12 10:58:59 2021 我是 ...

shellscript檔案有空格如何篩選跟tar

Candice avatar
By Candice
at 2021-08-12T07:19
不好意思又是我... 但我已經找遍各種方法都無解 只好再來麻煩各位(可能方向錯誤) 是這樣的我在我的資料夾/NAS/Ray內放了以下檔案 20210615 - A.xls 20210720 - A.xls 20210725 - A.xls 20210803 - A.xls 而我想要在每個月1號將上個月的 ...

關於 dev lib 手動安裝的問題

Carolina Franco avatar
By Carolina Franco
at 2021-08-12T06:48
※ [本文轉錄自 LinuxDev 看板 #1X55DFly ] 作者: gowrite (gowrite) 看板: LinuxDev 標題: [問題] 關於 dev lib 手動安裝的問題 時間: Thu Aug 12 06:46:37 2021 各位好, 最近在學習用一些套件跟軟體,在安裝階段想 ...

網樂通 kernel 2.6.32.59 upgrade

Edith avatar
By Edith
at 2021-08-09T01:42
原文吃光來回一下舊文. STLinux在2.4後的3.10版放棄SuperH支援,所以kernel更新只到2.4支援的2.6.32版為止. 然而網路上流傳的版本是2.6.32.59,和STLinux提供的最後一版2.6.32.61仍稍有落差. 所以試著把kernel先弄上2.6.32.61,之後再看看有沒有 ...

makefile for loop 問題

Ina avatar
By Ina
at 2021-08-06T12:23
※ 引述《Wudc (二寶來啦!!)》之銘言: : 想請教一下,如果有這樣一個text file, : Text.txt: : a1 b1 c1 : a2 b2 c2 : ... : a100 b100 c100 : 要怎麼樣在makefile的 for loop 當中用三個變數分別代表 a1~a100 b1 ...