cmdline_tools/
more.pro
Routines
top more
more, filename
Page the contents of the filename to the screen.
For example, to print the contents of the pwd.pro
file to the output
log:
IDL> more, file_which('pwd.pro')
; docformat = 'rst'
;+
; Prints the IDL's current directory to the output log.
;-
pro pwd
compile_opt strictarr, hidden
cd, current=currentDir
print, currentDir
end
Parameters
- filename in required type=string
filename to display
File attributes
Modification date: | Wed May 14 15:07:14 2014 |
Lines: | 13 |
Docformat: | rst rst |
Contact me if you have enhancement requests or bug fixes.