integer system external system type *, system ('ls')
The system function calls system(3), which invokes sh(1) by default. The argument passed is a single Fortran character string. The string is given to sh(1) as input, just as if the string had been typed as a command at a terminal.
sh(1), system(3)