diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html
index c873c79b95..3db6178674 100644
--- a/Documentation/NuttShell.html
+++ b/Documentation/NuttShell.html
@@ -953,7 +953,24 @@ losetup [-o
Synopsis.
- Setup the loop device at <dev-path> to access the file at <file-path> as a block device:
+ Setup the loop device at <dev-path> to access the file at <file-path> as a block device.
+ Example:
+
+nsh> dd if=/dev/zero of=/tmp/image bs=512 count=512
+nsh> ls -l /tmp
+/tmp:
+ -rw-rw-rw- 262144 IMAGE
+nsh> losetup /dev/loop0 /tmp/image
+nsh> ls -l /dev
+/dev:
+ brw-rw-rw- 0 loop0
+nsh> mkfatfs /dev/loop0
+nsh> mount -t vfat /dev/loop0 /mnt/example
+nsh> ls -l /mnt
+ls -l /mnt
+/mnt:
+ drw-rw-rw- 0 example/
+