“IDL”的版本间差异
跳到导航
跳到搜索
无编辑摘要 |
无编辑摘要 |
||
(未显示同一用户的2个中间版本) | |||
第12行: | 第12行: | ||
[[程序]] |
[[程序]] |
||
[[IDL中的函数]] |
|||
[[library]] |
[[library]] |
||
第18行: | 第20行: | ||
==小技巧== |
==小技巧== |
||
*spawn,'ls' |
|||
*@ ;batch 模式 |
*@ ;batch 模式 |
||
*查看license 使用情况 |
|||
lmstat -a -c |
|||
===How to run IDL applications in batch mode=== |
===How to run IDL applications in batch mode=== |
||
#create and compile your IDL application in the binary SAVE file format. For documentation on how to do this, use idlman command and look under Programmer's Guides > Building IDL Applications > Application Programming > Creating SAVE Files of Programs and Data |
#create and compile your IDL application in the binary SAVE file format. For documentation on how to do this, use idlman command and look under Programmer's Guides > Building IDL Applications > Application Programming > Creating SAVE Files of Programs and Data |
2017年3月30日 (四) 08:58的最新版本
小技巧
- @ ;batch 模式
- 查看license 使用情况
lmstat -a -c
How to run IDL applications in batch mode
- create and compile your IDL application in the binary SAVE file format. For documentation on how to do this, use idlman command and look under Programmer's Guides > Building IDL Applications > Application Programming > Creating SAVE Files of Programs and Data
- . create a script as follows:
#!/bin/sh # This script launches the IDL runtime application "myapp.sav" IDL_DIR=/usr/local/rsi/idl idl -rt=/path/to/myapp/myapp.sav