aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOskari Timperi <oskari.timperi@iki.fi>2013-08-05 17:12:48 +0300
committerOskari Timperi <oskari.timperi@iki.fi>2013-08-05 17:12:48 +0300
commit1e0e1b1bd5462a3e5c052201a23ca43ab7a0b069 (patch)
tree64822f1d0e5344baeb70365c35306dd1f8fee0cf
parenta0d9c3e7174d2df10ee2aa6e7f7a0e8ab41b3bd8 (diff)
downloadpy-mklink-wrapper-1e0e1b1bd5462a3e5c052201a23ca43ab7a0b069.tar.gz
py-mklink-wrapper-1e0e1b1bd5462a3e5c052201a23ca43ab7a0b069.zip
Update README.md
-rw-r--r--README.md22
1 files changed, 19 insertions, 3 deletions
diff --git a/README.md b/README.md
index fbe9a5e..692297c 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,20 @@
-py-mklink-wrapper
-=================
+# py-mklink-wrapper
-Wrapper script for ln.exe to make it look and act like mklink.exe
+A wrapper script for `ln.exe` to make it look like the `MKLINK` utility
+found from Windows Vista onwards. `ln.exe` allows Windows XP to use
+symbolic links. More recent versions of Windows come with the MKLINK
+utility which can do the same.
+
+To fully utilise this, you should also have a batch script that
+should look something like this:
+
+```
+@ECHO OFF
+python %~dp0mklink.py %*
+```
+
+Name the file `mklink.cmd` and put it in `PATH`. Now you can use the
+fake mklink utility like you would use the real.
+
+You can find instruction for installing ln.exe from
+[here](http://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html#symboliclinksforwindowsxp)