Install the complete package with local command reference and every published mode.
install echoechoRead text files without an editor: filter lines, keep line numbers and limit output from the beginning or end.
Use
echo <file> [text] [options]echo <file>show the contents of a text file
echo <file> "text"show lines containing "text"
-i "text"search for "text" without letter-case matching
-r "pattern"search with a PHP regular expression
-nshow the file contents with line numbers
-h <lines>show the first <lines> lines
-t <lines>show the last <lines> lines
read <file>alias for
-n keeps the source line number separate from the text, so long lines remain readable and the number never becomes part of copied content. Head and tail are applied to the result after filtering, which makes them useful for quickly inspecting the beginning or end of a large match set.
Binary files are rejected. Output is bounded by line count and total size and is marked when truncated.
read is a documented secondary command owned by
Run the prepared examples directly on the page. Their results are prebuilt and shown in the browser; no terminal command is executed on the server.
Install the current compatible version. Choose Base for the complete feature set or Minimum for the reduced package; use upgrade to update a module that is already installed.
Base and Minimum are two packages of the same current module release, not separate command versions.
Install the complete package with local command reference and every published mode.
install echoInstall the reduced package. Local reference is omitted;
install echo -mInstall exactly this published version.
install echo -v 1.2.2Ask upgrade to check compatibility and replace the installed block only when needed.
upgrade echoRemove the extension block while leaving the core and unrelated modules intact.
install echo -uExamples are copyable command lines, not actions executed by this website. Review paths, permissions and destructive flags before running them on a real project.
cd \sandbox | echo data/sample.txt -h 3 | echo data/sample.txt "terminal" -i -n4 It is never included in generated lil-terminal downloads and direct HTTP access is blocked.read sandbox/data/sample.txtlil-terminal sandbox text file
This file is safe to read, copy, rename, replace, hash and archive.read is a secondary command owned by
echo sandbox/data/sample.txt -nlil-terminal sandbox text file
This file is safe to read, copy, rename, replace, hash and archive.echo sandbox/data/sample.txt "terminal" -i -n4 It is never included in generated lil-terminal downloads and direct HTTP access is blocked.echo sandbox/logs/app.log -r "/error|warning/i" -n3 This directory is part of the server tree: website_e36e9fed/sandbox/
4 It is never included in generated lil-terminal downloads and direct HTTP access is blocked.echo sandbox/data/sample.txt -h 3lil-terminal documentation sandbox
This directory is part of the server tree: website_e36e9fed/sandbox/echo sandbox/data/sample.txt -t 3During module review, examples may be refined together with the command. Keep paths
stable whenever possible because public documentation links refer to them.echo \sandbox\data\missing.txtFile not foundsandbox/data/sample.txtThe example uses a file or directory from the protected /sandbox/ documentation workspace.
lil-terminal sandbox text file
This file is safe to read, copy, rename, replace, hash and archive.
Search, line-number and head/tail controls are grouped as ordinary options.