which(3f) - [M_io:SCANNAMES] given a command name find the pathname by searching the directories in the environment variable $PATH (LICENSE:PD)
Syntax
Description
Options
Returns
Examples
See Also
Author
License
function which(command) result(pathname)
character(len=*),intent(in) :: command character(len=:),allocatable :: pathname
Given a command name find the first file with that name in the directories specified by the environment variable $PATH.
COMMAND the command to search for
PATHNAME the first pathname found in the current user path. Returns blank if the command is not found.
Sample program:
program demo_which use M_io, only : which implicit none write(*,*)ls is ,which(ls) write(*,*)dir is ,which(dir) write(*,*)install is ,which(install) end program demo_which
M_system:system_dir(3f)
John S. Urban
Public Domain
Nemo Release 3.1 | which (3) | February 23, 2025 |