]> gitweb.factorcode.org Git - factor.git/blob - extra/backticks/backticks-docs.factor
inverse: Fix docs
[factor.git] / extra / backticks / backticks-docs.factor
1 USING: help.markup help.syntax io.encodings.utf8 strings ;
2 IN: backticks
3
4 HELP: `
5 { $syntax "` command [args]`" }
6 { $description "Runs the specified command and captures the output as a " { $link utf8 } " encoded " { $link string } "." }
7 { $examples
8     { $unchecked-example
9         "` ls -l`"
10         "total 45\ndrwxrwxr-x+ 61 root  admin  2074 Apr  8 22:58 Applic..."
11     }
12 } ;