summaryrefslogtreecommitdiffstats
path: root/tools/shman.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/shman.sh')
-rw-r--r--tools/shman.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/shman.sh b/tools/shman.sh
index 70d56c0..df88c95 100644
--- a/tools/shman.sh
+++ b/tools/shman.sh
@@ -55,7 +55,7 @@ get_mtime()
read now_m now_y <<-EOF
$(date '+%m %Y')
EOF
- now_m="${now_m#'0'}"
+ now_m="${now_m#0}"
if [ ${now_m} -ge ${m} ]; then
y=${now_y}
else
@@ -172,7 +172,7 @@ gen_doc()
while read -r line; do
case "${line}" in
'@'*)
- doc_joined="${doc_joined}${LF}${line#'@'}"
+ doc_joined="${doc_joined}${LF}${line#@}"
;;
*)
doc_joined="${doc_joined} ${line}"
@@ -213,15 +213,15 @@ parse_docs()
while IFS='' read -r line; do
case "${line}" in
'##'*)
- doc="${doc}${line#'##'}${LF}"
+ doc="${doc}${line#\#\#}${LF}"
got_doc=true
continue
;;
'')
continue
;;
- *'()') line="${line%'()'}" is_func=true;;
- *'='*) line="${line%%'='*}" is_func=false;;
+ *'()') line="${line%()}" is_func=true;;
+ *'='*) line="${line%%=*}" is_func=false;;
*)
doc=''
got_doc=false