Axcess Network Receiver Installation Guide User Manual
Page 50

Network Receiver
50
750.001.005 R04
© 2005 AXCESS Inc.
In addition to redirecting output to a file, you can redirect output to null (e.g. java MyProg.tini
> null) to suppress output from this program, or redirect the output to the serial port (e.g. java
MyProg.tini > S0). S0 indicates serial0, and is the only serial port supported for this action.
You must have admin privileges to redirect to the serial port, and should not do this if you are
already at a serial server prompt. Slush will bring down the serial server, run the command,
then bring it back up on completion.
Examples:
To run MyProg.tini in the background, redirecting stdin from a file
called file.in, and redirecting stdout and stderr to a file called
file.out, type: java MyProg.tini < file.in >& file.out &
To get a file listing and redirect to the serial port, type: ls > S0
Available commands:
Appends a source file to a destination file.
Usage: append SRC DEST
arp
Displays the current ARP cache entries.
Usage: arp
cat
Displays the contents of a file.
Usage: cat FILE
Changes the current working directory.
Usage: cd DIR
Changes the permissions of a file.
Usage: chmod [[u|o][+|-][r|w|x]] OR [##]
Examples:
To remove user's read and write permission on s.txt
chmod -r-w s.txt
To remove other's execute and add read permission on s.txt
chmod o+r-x s.txt
Changes the owner of a file.