diff --git a/README b/README
index 588246dbde9..c5fff76ab11 100644
--- a/README
+++ b/README
@@ -21,7 +21,7 @@ If PKGFS_CONFIG_FILE is not set or specified from the command line with the
 Once that you read the "pkgfs.conf" file and configured it, you can start
 installing packages by using the command:
 
-	$ pkgfs.sh install glib-2.18.1
+	$ pkgfs.sh install glib
 
 Please note that it's assumed that PKGFS_TEMPLATESDIR is properly defined
 and actually contains valid template files.
@@ -36,7 +36,7 @@ on which ``Xstow
 
 To remove a currently installed (and stowned) package, you can use:
 
-	$ pkgfs.sh remove glib-2.18.1
+	$ pkgfs.sh remove glib
 
 Please note that when you remove it, the package will also be removed
 from PKGFS_DESTDIR and previously "unstowned".
@@ -51,15 +51,15 @@ PKGFS_DESTDIR/<pkgname>.
 
 Summary, to stow an already installed package (into PKGFS_DESTDIR/<pkgname>):
 
-	$ pkgfs.sh stow glib-2.18.1
+	$ pkgfs.sh stow glib
 
 and to unstow an already installed (stowned) package:
 
-	$ pkgfs.sh unstow glib-2.18.1
+	$ pkgfs.sh unstow glib
 
 You can also print some stuff about any template, e.g:
 
-	$ pkgfs.sh info glib-2.18.1
+	$ pkgfs.sh info glib
 
 To list installed (stowned) packages, use this:
 
@@ -67,19 +67,19 @@ To list installed (stowned) packages, use this:
 
 To only extract the distfile, without configuring/building/installing:
 
-	$ pkgfs.sh -i install foo-1.0
+	$ pkgfs.sh -i install foo
 
 To not remove the build directory after successful installation:
 
-	$ pkgfs.sh -C install blah-1.0
+	$ pkgfs.sh -C install blah
 
 To only fetch the distfile:
 
-	$ pkgfs.sh -e install blah-1.0
+	$ pkgfs.sh -e install blah
 
 To only install the package, _without_ stowning it into the master directory:
 
-	$ pkgfs.sh -i install blob-4.0
+	$ pkgfs.sh -i install blob
 
 That's all for now folks. I hope you find it useful, as I do.