summaryrefslogtreecommitdiffstats
path: root/gnome-help/C/check_status.sh
diff options
context:
space:
mode:
authorJim Campbell <jwcampbell@gmail.com>2011-03-18 17:42:03 -0400
committerJim Campbell <jwcampbell@gmail.com>2011-03-18 17:46:27 -0400
commit162ebd8cac5c83a45de4c5b2e83c7d926de0e32a (patch)
tree51e57a036e7c35950b67e35a7f2e3cfdd314cb13 /gnome-help/C/check_status.sh
parent2d4d09e9ab78040b0443923f6ec51ed37d0fec1b (diff)
downloadgnome-user-docs-162ebd8cac5c83a45de4c5b2e83c7d926de0e32a.tar.gz
gnome-user-docs-162ebd8cac5c83a45de4c5b2e83c7d926de0e32a.tar.xz
gnome-user-docs-162ebd8cac5c83a45de4c5b2e83c7d926de0e32a.zip
removed image files from the prior location in git
Diffstat (limited to 'gnome-help/C/check_status.sh')
-rwxr-xr-xgnome-help/C/check_status.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/gnome-help/C/check_status.sh b/gnome-help/C/check_status.sh
deleted file mode 100755
index 1cd3d16..0000000
--- a/gnome-help/C/check_status.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/bash
-
-# Produce a summary of the statuses of all of the .page topics
-# (Not done properly, but it's OK for a rough estimate)
-# DO NOT TRANSLATE
-
-echo " "
-echo "== NONE =="
-grep -l "status=\"none" *.page
-echo " "
-echo "== STUB =="
-grep -l "status=\"stub" *.page
-echo " "
-echo "== INCOMPLETE =="
-grep -l "status=\"incomplete" *.page
-echo " "
-echo "== DRAFT =="
-grep -l "status=\"draft" *.page
-echo " "
-echo "== REVIEW =="
-grep -l "status=\"review" *.page
-echo " "
-echo "== CANDIDATE =="
-grep -l "status=\"candidate" *.page
-echo " "
-echo "== FINAL =="
-grep -l "status=\"final" *.page
-echo " "
-echo "== OUTDATED =="
-grep -l "status=\"outdated" *.page
-
-echo " "
-echo " "
-echo "== SUMMARY =="
-echo "None: " `grep "status=\"none" *.page | wc -l`
-echo "Stub: " `grep "status=\"stub" *.page | wc -l`
-echo "Incomplete: " `grep "status=\"incomplete" *.page | wc -l`
-echo "Draft: " `grep "status=\"draft" *.page | wc -l`
-echo "Review: " `grep "status=\"review" *.page | wc -l`
-echo "Candidate: " `grep "status=\"candidate" *.page | wc -l`
-echo "Final: " `grep "status=\"final" *.page | wc -l`
-echo "Outdated: " `grep "status=\"outdated" *.page | wc -l`
-echo " "