|
// list all JPG files on the current drive dir \*.jpg/r/l → -- 05-08-09 2966 \documents\mShell\GraphTest.jpg
// copy the JPG files in \documents\mShell to drive e:-- 11:37:02 17909 \Nokia\Images\FE_img\FEscr(0).jpg ... cp \documents\mShell\*.jpg e: → 1
// search for the mShell properties filedir \*.prp/r → \System\Apps\mShell\mShell.prp
// show its contentstype \system\apps\mShell\mShell.prp → mfont=LatinPlain12
outsize=20000 keep=busy |
If a customized autoexec.m in system.docdir is created without incorporating the original script, these function are no longer available.
Copies a file, files matching a pattern, or an entire directory tree. Wrapper for files.copy.
Deletes a file, files matching a pattern, also in complete directory tree. Wrapper for files.delete.
List files matching pattern on standard output. If pattern is a directory, lists all files in it. Options are the following:
Loads a file into the builtin editor and shows it. Wrapper for files.edit.
Exit this shell. This is equivalent to closing it. This function is only available if module proc is available.
Creates a directory or directories. Wrapper for files.mkdir.
Moves a file, files matching a pattern, or an entire directory tree. Wrapper for files.move.
Removes a directory or an entire directory tree. Wrapper for files.rmdir.
Renames a single file. Wrapper for files.rename.
Run another m script. If show=true, the script's console is shown. This function is only available if module proc is available.
Interactively sends a file over a channel chosen by the user. Wrapper for files.send.
Writes the contents of file to standard output.
If utf16=true, assumes the file to be UTF-16 little endian encoded. Otherwise, raw encoding is assumed.
If tail=true, only outputs the last 300 bytes. If tail=n where n is a number, outputs the last n bytes.