8 lines
161 B
Bash
Executable File
8 lines
161 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
#to be done in the root of the wiki
|
|
for X in $(ls $1/wiki.d);
|
|
do
|
|
echo $X | grep -v -E ".flock|,new|,del|RecentChanges|PmWiki.|Site."
|
|
done
|