<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.linux-ottawa.org/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.linux-ottawa.org/feed.php">
        <title>Linux-Ottawa (OCLUG) Wiki - wiki</title>
        <description></description>
        <link>https://wiki.linux-ottawa.org/</link>
        <image rdf:resource="https://wiki.linux-ottawa.org/lib/exe/fetch.php?media=logo.png" />
       <dc:date>2026-04-15T03:35:16+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.linux-ottawa.org/doku.php?id=wiki:dokuwiki&amp;rev=1591192230&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.linux-ottawa.org/doku.php?id=wiki:match_or&amp;rev=1513437784&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.linux-ottawa.org/doku.php?id=wiki:match&amp;rev=1513437760&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.linux-ottawa.org/doku.php?id=wiki:renaud17-match&amp;rev=1513437739&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.linux-ottawa.org/doku.php?id=wiki:syntax&amp;rev=1709956014&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.linux-ottawa.org/doku.php?id=wiki:welcome&amp;rev=1591192230&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.linux-ottawa.org/lib/exe/fetch.php?media=logo.png">
        <title>Linux-Ottawa (OCLUG) Wiki</title>
        <link>https://wiki.linux-ottawa.org/</link>
        <url>https://wiki.linux-ottawa.org/lib/exe/fetch.php?media=logo.png</url>
    </image>
    <item rdf:about="https://wiki.linux-ottawa.org/doku.php?id=wiki:dokuwiki&amp;rev=1591192230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-06-03T13:50:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dokuwiki</title>
        <link>https://wiki.linux-ottawa.org/doku.php?id=wiki:dokuwiki&amp;rev=1591192230&amp;do=diff</link>
        <description>DokuWiki

wiki:dokuwiki DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn&#039;t require a database. It is loved by users for its clean and readable syntax. The ease of maintenance, backup and integration makes it an administrator&#039;s favorite. Built in</description>
    </item>
    <item rdf:about="https://wiki.linux-ottawa.org/doku.php?id=wiki:match_or&amp;rev=1513437784&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-12-16T15:23:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>match_or</title>
        <link>https://wiki.linux-ottawa.org/doku.php?id=wiki:match_or&amp;rev=1513437784&amp;do=diff</link>
        <description>#! /usr/bin/perl -w

###! /usr/local/bin/perl -w
# match_or :    Time-stamp: &lt;2014-07-17 13:47:48&gt;

# code for the or (-o) option for match
# match -o str1 str2  matches lines that have str1 OR str2
# NYI: Either converting the &quot;match&quot; shell script to perl or converting
#      this to an inline that can be used in the shell script would be good.
#
# Note: (06/10/16) This can be done with
#           grep &#039;str1\|str2&#039;

my @patterns;
my $case_insensitive_flag = 0;
my $verbose_flag = 0;

sub msg {
…</description>
    </item>
    <item rdf:about="https://wiki.linux-ottawa.org/doku.php?id=wiki:match&amp;rev=1513437760&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-12-16T15:22:40+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>match</title>
        <link>https://wiki.linux-ottawa.org/doku.php?id=wiki:match&amp;rev=1513437760&amp;do=diff</link>
        <description>#! /bin/sh
# match:    Time-stamp: &lt;2004-11-02 16:15:44&gt;
#
S=&quot;grep -i &quot;
if test $# -ge 1
then
    case $1 in
        -v) S=&quot;grep -iv &quot; ; shift ;;
	-o) shift; match_or $*; exit;;
	-h)
	    echo match - a grep pipeline;
	    echo &#039;Usage: match [-v] {pat}&#039;;
	    echo &#039;Eg: cat file | match str1 str2 str3&#039;
	    echo &#039;     is equivalent to:&#039;
	    echo &#039;    cat file | grep -i str1 | grep -i str2 | grep -i str3&#039;
	    echo &#039;    match -v makes it grep -iv&#039;
	    echo &#039;    match -o calls match_or&#039;
	    echo…</description>
    </item>
    <item rdf:about="https://wiki.linux-ottawa.org/doku.php?id=wiki:renaud17-match&amp;rev=1513437739&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-12-16T15:22:19+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>renaud17-match</title>
        <link>https://wiki.linux-ottawa.org/doku.php?id=wiki:renaud17-match&amp;rev=1513437739&amp;do=diff</link>
        <description>match

Roland Renaud

match and match_or are scripts to allow grep pipelines. 

Here are some examples:



% cat animals 
    cat
    dog
    horse
    goat

% cat animals |match hor
    horse

% cat animals |match -o hor go
    horse
    goat


% match -h
    match - a grep pipeline
    Usage: match [-v] {pat}
    Eg: cat file | match str1 str2 str3
         is equivalent to:
        cat file | grep -i str1 | grep -i str2 | grep -i str3
        match -v makes it grep -iv
        match -o calls …</description>
    </item>
    <item rdf:about="https://wiki.linux-ottawa.org/doku.php?id=wiki:syntax&amp;rev=1709956014&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-03-09T03:46:54+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>syntax</title>
        <link>https://wiki.linux-ottawa.org/doku.php?id=wiki:syntax&amp;rev=1709956014&amp;do=diff</link>
        <description>Formatting Syntax

DokuWiki supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing</description>
    </item>
    <item rdf:about="https://wiki.linux-ottawa.org/doku.php?id=wiki:welcome&amp;rev=1591192230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-06-03T13:50:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>welcome</title>
        <link>https://wiki.linux-ottawa.org/doku.php?id=wiki:welcome&amp;rev=1591192230&amp;do=diff</link>
        <description>Welcome to your new DokuWiki

Congratulations, your wiki is now up and running. Here are a few more tips to get you started.

Enjoy your work with DokuWiki,

-- the developers

Create your first pages

Your wiki needs to have a start page. As long as it doesn&#039;t exist, this link will be red:</description>
    </item>
</rdf:RDF>
