| Version 3 (modified by moo, 7 years ago) |
|---|
Shell Example
We wrote an ShellExample preprocessor macro for trac. It's mainly for giving guide on what/how to do under shell prompt.
{{{
#!ShellExample
$ ./configure --help
...
--enable-abc ......
--enable-def ......
--with-ghi[=dir] ......
...
$ ./configure '--enable-abc' \
'--enable-def' \
--with-ghi='/usr
/local'
(many outputs here)
$ make
(many outputs again)
(now su to root)
$ su
Password:
(type your root password)
# make install
(ok, it's now installed)
}}}
read as
$ ./configure '--enable-abc' \ '--enable-def' \ --with-ghi='/usr/local def' (many outputs here) $ make (many outputs again) (now su to root) $ su Password: (type your root password) # make install (ok, it's now installed)
Attachments
-
shellexample-0.8.0.tar.gz
(2.8 KB) - added by moo
5 years ago.

