aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/utilities.F904
1 files changed, 2 insertions, 2 deletions
diff --git a/common/utilities.F90 b/common/utilities.F90
index e200def..c091c6e 100644
--- a/common/utilities.F90
+++ b/common/utilities.F90
@@ -587,9 +587,9 @@ contains
character(*), intent(in)::filename
#ifdef WINDOWS
- call execute_command_line("type "//trim(filename), wait=.true.)
+ call execute_command_line('type "'//trim(filename)//'"', wait=.true.)
#else
- call execute_command_line("cat "//trim(filename), wait=.true.)
+ call execute_command_line('cat "'//trim(filename)//'"', wait=.true.)
#endif
end subroutine echo_file_stdout