diff --git a/README.md b/README.md index a590d33..16d62b6 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ fi # move the resource to the web directory resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ -mv $resource_file $resource_dir +/bin/mv $resource_file $resource_dir ``` Observe that the command ``http_xsltproc.sh -F`` forces a fresh SAML metadata file. If the server responds with ``304 Not Modified``, the process terminates without updating the resource file. @@ -125,7 +125,7 @@ fi # move the resources to the web directory resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ -mv $resource1_file $resource2_file $resource_dir +/bin/mv $resource1_file $resource2_file $resource_dir ``` Observe the commands ``http_xsltproc.sh -F`` and ``http_xsltproc.sh -C``. The former forces a fresh SAML metadata file as in the previous example; the latter goes directly to cache. If file is not in the cache (which is highly unlikely), the process terminates without updating any resource files. @@ -169,7 +169,7 @@ fi # move the resources to the web directory resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ -mv $resource1_file $resource2_file $resource_dir +/bin/mv $resource1_file $resource2_file $resource_dir ``` The commands ``http_xsltproc.sh -F`` and ``http_xsltproc.sh -C`` behave exactly as described in the previous example.