- foamCleanPath now only splits the environment variable on ':', which allows other directories with spaces or '(..)' etc to pass through without major issue. - The filter arguments are split on whitespace, colons or semi-colons.
Loading
-
mentioned in issue #1007 (closed)
-
Check your permissions. Something like
ls -l /opt/OpenFOAM/OpenFOAM-v1806/bin
You will get content that perhaps looks like this
-rwxr-xr-x 1 mol users 6362 Oct 16 01:13 /home/mol/openfoam/OpenFOAM-v1806/bin/foamCleanPath
The leading characters show the permissions (user, group, other). You'll need to use
chmod
to adjustment so that the file is readable and executable. Eg,chmod a+rx /opt/OpenFOAM/OpenFOAM-v1806/bin/foamCleanPath
You should be able to find some basic Unix/Linux information on the internet, now that you know what you are looking for.
Cheers, /mark
-
mentioned in commit 1a519622
Please register or sign in to comment