User:Strugglers: Difference between revisions
Strugglers (talk | contribs) mNo edit summary |
Strugglers (talk | contribs) m (→Testing) |
||
| Line 14: | Line 14: | ||
boring and melting of the ancient ice caps. And I am the more | boring and melting of the ancient ice caps. And I am the more | ||
reluctant because my warning may be in vain. | reluctant because my warning may be in vain. | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| Line 43: | Line 21: | ||
bash# ia ia Cthulhu fhtagn! | bash# ia ia Cthulhu fhtagn! | ||
</syntaxhighlight> | </syntaxhighlight> | ||
====lang="bash"==== | |||
<syntaxhighlight lang="bash"> | |||
#!/bin/sh | |||
# run htcacheclean | |||
set -e | |||
set -u | |||
type htcacheclean > /dev/null 2>&1 || exit 0 | |||
[ -e /etc/default/apache2 ] || exit 0 | |||
# edit /etc/default/apache2 to change this | |||
HTCACHECLEAN_MODE=daemon | |||
HTCACHECLEAN_RUN=auto | |||
HTCACHECLEAN_SIZE=300M | |||
HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk | |||
HTCACHECLEAN_OPTIONS="" | |||
. /etc/default/apache2 | |||
[ "$HTCACHECLEAN_MODE" = "cron" ] || exit 0 | |||
[ "$HTCACHECLEAN_RUN" = "yes" ] || | |||
( [ "$HTCACHECLEAN_RUN" = "auto" ] && \ | |||
[ -e /etc/apache2/mods-enabled/cache_disk.load ] ) || exit 0 | |||
htcacheclean ${HTCACHECLEAN_OPTIONS} \ | |||
-p${HTCACHECLEAN_PATH} \ | |||
-l${HTCACHECLEAN_SIZE} | |||
</syntaxhighlight> | |||
===Highlightjs_Integration=== | |||
====lang="text"==== | |||
<synhijs lang="text"> | |||
I am forced into speech because men of science have refused to | |||
follow my advice without knowing why. It is altogether against my | |||
will that I tell my reasons for opposing this contemplated invasion | |||
of the antarctic - with its vast fossil hunt and its wholesale | |||
boring and melting of the ancient ice caps. And I am the more | |||
reluctant because my warning may be in vain. | |||
</synhijs> | |||
====lang="console"==== | |||
<synhijs lang="console"> | |||
bash# cp /your/mum /home/hpl/ | |||
bash# ia ia Cthulhu fhtagn! | |||
</synhijs> | |||
====lang="bash"==== | |||
<synhijs lang="bash"> | |||
#!/bin/sh | |||
# run htcacheclean | |||
set -e | |||
set -u | |||
type htcacheclean > /dev/null 2>&1 || exit 0 | |||
[ -e /etc/default/apache2 ] || exit 0 | |||
# edit /etc/default/apache2 to change this | |||
HTCACHECLEAN_MODE=daemon | |||
HTCACHECLEAN_RUN=auto | |||
HTCACHECLEAN_SIZE=300M | |||
HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk | |||
HTCACHECLEAN_OPTIONS="" | |||
. /etc/default/apache2 | |||
[ "$HTCACHECLEAN_MODE" = "cron" ] || exit 0 | |||
[ "$HTCACHECLEAN_RUN" = "yes" ] || | |||
( [ "$HTCACHECLEAN_RUN" = "auto" ] && \ | |||
[ -e /etc/apache2/mods-enabled/cache_disk.load ] ) || exit 0 | |||
htcacheclean ${HTCACHECLEAN_OPTIONS} \ | |||
-p${HTCACHECLEAN_PATH} \ | |||
-l${HTCACHECLEAN_SIZE} | |||
</synhijs> | |||
===ParserFunctions=== | ===ParserFunctions=== | ||
Hit {{Key press|Ctrl|d}} before Yog-Sothoth eats your brain. | Hit {{Key press|Ctrl|d}} before Yog-Sothoth eats your brain. | ||
Revision as of 01:56, 18 March 2018
Hello.
I'm Andy Smith. I'm the managing director of BitFolk Limited.
Testing
syntaxhighlight_geshi highlighting
lang="text"
bash# cat >> /your/mum
I am forced into speech because men of science have refused to
follow my advice without knowing why. It is altogether against my
will that I tell my reasons for opposing this contemplated invasion
of the antarctic - with its vast fossil hunt and its wholesale
boring and melting of the ancient ice caps. And I am the more
reluctant because my warning may be in vain.
lang="shell-session"
bash# cp /your/mum /home/hpl/
bash# ia ia Cthulhu fhtagn!
lang="bash"
#!/bin/sh
# run htcacheclean
set -e
set -u
type htcacheclean > /dev/null 2>&1 || exit 0
[ -e /etc/default/apache2 ] || exit 0
# edit /etc/default/apache2 to change this
HTCACHECLEAN_MODE=daemon
HTCACHECLEAN_RUN=auto
HTCACHECLEAN_SIZE=300M
HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
HTCACHECLEAN_OPTIONS=""
. /etc/default/apache2
[ "$HTCACHECLEAN_MODE" = "cron" ] || exit 0
[ "$HTCACHECLEAN_RUN" = "yes" ] ||
( [ "$HTCACHECLEAN_RUN" = "auto" ] && \
[ -e /etc/apache2/mods-enabled/cache_disk.load ] ) || exit 0
htcacheclean ${HTCACHECLEAN_OPTIONS} \
-p${HTCACHECLEAN_PATH} \
-l${HTCACHECLEAN_SIZE}
Highlightjs_Integration
lang="text"
<synhijs lang="text"> I am forced into speech because men of science have refused to follow my advice without knowing why. It is altogether against my will that I tell my reasons for opposing this contemplated invasion of the antarctic - with its vast fossil hunt and its wholesale boring and melting of the ancient ice caps. And I am the more reluctant because my warning may be in vain. </synhijs>
lang="console"
<synhijs lang="console"> bash# cp /your/mum /home/hpl/ bash# ia ia Cthulhu fhtagn! </synhijs>
lang="bash"
<synhijs lang="bash">
- !/bin/sh
- run htcacheclean
set -e set -u
type htcacheclean > /dev/null 2>&1 || exit 0 [ -e /etc/default/apache2 ] || exit 0
- edit /etc/default/apache2 to change this
HTCACHECLEAN_MODE=daemon HTCACHECLEAN_RUN=auto HTCACHECLEAN_SIZE=300M HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk HTCACHECLEAN_OPTIONS=""
. /etc/default/apache2
[ "$HTCACHECLEAN_MODE" = "cron" ] || exit 0
[ "$HTCACHECLEAN_RUN" = "yes" ] || ( [ "$HTCACHECLEAN_RUN" = "auto" ] && \
[ -e /etc/apache2/mods-enabled/cache_disk.load ] ) || exit 0
htcacheclean ${HTCACHECLEAN_OPTIONS} \
-p${HTCACHECLEAN_PATH} \
-l${HTCACHECLEAN_SIZE}
</synhijs>
ParserFunctions
Hit Ctrl+d before Yog-Sothoth eats your brain.