diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html
index 1a2a1da062..72629580f8 100644
--- a/Documentation/NuttShell.html
+++ b/Documentation/NuttShell.html
@@ -8,7 +8,7 @@
NuttShell (NSH)
- Last Updated: May 25, 2012
+ Last Updated: June 11, 2012
|
@@ -221,79 +221,85 @@
|
- 2.24 Check Network Peer (ping)
+ 2.24 Rename a File (mv)
|
|
- 2.25 Send File Via TFTP (put)
+ 2.25 Check Network Peer (ping)
|
|
- 2.26 Show Current Working Directory (pwd)
+ 2.26 Send File Via TFTP (put)
|
|
- 2.27 Remove a File (rm)
+ 2.27 Show Current Working Directory (pwd)
|
|
- 2.28 Remove a Directory (rmdir)
+ 2.28 Remove a File (rm)
|
|
- 2.29 Set an Environment Variable (set)
+ 2.29 Remove a Directory (rmdir)
|
|
- 2.30 Execute an NSH Script (sh)
+ 2.30 Set an Environment Variable (set)
|
|
- 2.31 Wait for Seconds (sleep)
+ 2.31 Execute an NSH Script (sh)
|
|
- 2.32 Unmount a File System (umount)
+ 2.32 Wait for Seconds (sleep)
|
|
- 2.33 Unset an Environment Variable (unset)
+ 2.33 Unmount a File System (umount)
|
|
- 2.34 Wait for Microseconds (usleep)
+ 2.34 Unset an Environment Variable (unset)
|
|
- 2.35 Get File Via HTTP (wget)
+ 2.35 Wait for Microseconds (usleep)
|
|
- 2.36 Hexadecimal Dump (xd)
+ 2.36 Get File Via HTTP (wget)
+ |
+
+
+
|
+
+ 2.37 Hexadecimal Dump (xd)
|
@@ -1483,7 +1489,25 @@ nsh>
+
+Command Syntax:
+
+mv <old-path> <new-path>
+
+
+ Synopsis.
+ Rename the file object at <old-path>
to <new-path>
.
+ Both paths must reside in the same mounted filesystem.
+
+
+
@@ -1516,7 +1540,7 @@ nsh>
@@ -1551,7 +1575,7 @@ put [-b|-n] [-f <remote-path>] -h <ip-address> <local-path>
@@ -1581,7 +1605,7 @@ nsh>
@@ -1615,7 +1639,7 @@ nsh>
@@ -1650,7 +1674,7 @@ nsh>
@@ -1676,7 +1700,7 @@ nsh>
@@ -1694,7 +1718,7 @@ sh <script-path>
@@ -1711,7 +1735,7 @@ sleep <sec>
@@ -1741,7 +1765,7 @@ nsh>
@@ -1767,7 +1791,7 @@ nsh>
@@ -1784,7 +1808,7 @@ usleep <usec>
@@ -1811,7 +1835,7 @@ wget [-o <local-path>] <url>
@@ -1989,6 +2013,11 @@ nsh>
!CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_READABLE 3 |
CONFIG_NSH_DISABLE_MOUNT |
+
+ mv |
+ !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_WRITABLE 3 |
+ CONFIG_NSH_DISABLE_MV |
+
ping |
CONFIG_NET && CONFIG_NET_ICMP &&
@@ -2590,6 +2619,7 @@ nsh>
mkfifo
mkrd
mount
+ mv
nice
OLDPWD
Overview
|