nash (8) Linux Manual Page
nash – script interpretor to interpret linuxrc images
Synopsis
nash [–quiet] [–force] script
Description
nash is a very simple script interpretor designed to be as small as possible. It is primarily designed to run simple linuxrc scripts on an initrd image. Arguments to commands may be enclosed in either single or double quotes to allow spaces to be included in the arguments. Spaces outside of quotations always delineate arguments, and no backslash escaping is supported. Additionally, if nash is invoked as modprobe, it will immediately exit with a return code of zero. This is to allow initrd’s to prevent some extraneous kernel error messages during startup. There are two types of commands, built in and external. External commands are run from the filesystem via execve(). If commands names are given without a path, nash will search it’s builtin PATH, which is /usr/bin, /bin, /sbin, /usr/sbin. Currently, nash supports the following built in commands.
access -[r][w][x][f]path- Tells whether the current user has sufficient permissions to read, write, or execture path, or if the file exists (see
access(2)for more information). echo [item]* [>filename]- Echos the text strings given to a file, with a space in between each item. The output may be optionally redirected to a file.
exec<command> The command given is execed, overlaying the nash process. finddir -name name- Display the path to files named name in or below directory dir. This is a
verylimited implementation of find(1). losetup/dev/loopdev file- Binds file to the loopback device /dev/loopdev. See
losetup(8)for information on loopback devices. mkdevicespath- Creates device files for all of the block devices listed in
/proc/partitionsin the directory specfied by path. mkdir[-p] path- Creates the directory path. If -p is specified, this command will not complain if the directory exists. Note this is a subset of the standard
mkdir-p behavior. mknodpath [c|b] major minor- Creates a device inode for path. This is identical to
mkdev(1) which the exceptions that it will not create named pipes and if the directories in path do not exist they will be automatically created. mkdmnod- Creates a device inode for the device mapper control inode as /dev/mapper/control. If it already exists with the correct major/minor, it will not be recreated.
mkrootdevpath- Makes path a block inode for the device which should be mounted as root. To determine this device nash uses the device suggested by the root= kernel command line argument (if root=LABEL is used devices are probed to find one with that label). If no root= argument is available, /proc/sys/kernel/real-root-dev provides the device number.
mount[–ro] -o opts -t type device mntpoint- Mounts a filesystem. It does not support NFS, and it must be used in the form given above (arguments must go first). If device is of the form
LABEL=foo the devices listed in /fB/proc/partitions will be searched, and the first device with a volume label of foo will be mounted. Normalmount(2) options are supported, and–rowill mount the filesystem read only for compatibility with older versions of nash. Thedefaultsmount option is silently ignored. pivot_rootnewrootpath oldrootpath- Makes the filesystem mounted at newrootpath the new root filesystem, and mounts the current root filesystem as oldrootpath.
readlinkpath- Displays the value of the symbolic link path.
raidautorunmddevice- Runs raid autodetection on all raid-typed partitions. mddevice must be a raid device (any will do).
setquiet- Cause any later echos in this script to not be displayed.
showlabels- Display a table of devices, their filesystem labels, and their uuids.
sleepnum- Sleep for num seconds
switchrootnewrootpath- Makes the filesystem mounted at newrootpath the new root filesystem by moving the mountpoint. This will only work in 2.6 or later kernels.
umountpath- Unmounts the filesystem mounted at path.
Return Value
Returns 0 is the last command succeeded or 1 if it failed.
Options
–force- Allows
forcereally execute the script, even thoughnashdoesn’t appear to be running from an initrd image.
Bugs
Probably many.
nashis not a shell, and it shouldn’t be thought of as one. It isn’t entirely different from a shell, but that’s mostly by accident.
