summaryrefslogtreecommitdiffstats
path: root/src/cmd.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-07-22 14:10:16 (EDT)
committer P. J. McDermott <pj@pehjota.net>2017-07-22 14:10:16 (EDT)
commite485e67e0234ec54a61f2699fd0e77c0d6e0a5b5 (patch)
treec17ec8461b1be657f21eeb8007d16fcf2754d91d /src/cmd.sh
parentecf4dead3377eeca130af6983524569817337a51 (diff)
`git ls-files | xargs sed -i 's/\.sm/.sho/g'`
Diffstat (limited to 'src/cmd.sh')
-rw-r--r--src/cmd.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd.sh b/src/cmd.sh
index d05e7eb..fde5f60 100644
--- a/src/cmd.sh
+++ b/src/cmd.sh
@@ -31,7 +31,7 @@ load_cmds()
for cmd in ${PKGLIBCMD}; do
cmd="${cmd##*/}"
- cmd="${cmd%.sm}"
+ cmd="${cmd%.sho}"
cmds="${cmds}${cmd}${LF}"
use "cmd/${cmd}"
done
@@ -76,7 +76,7 @@ print_cmd_summaries()
padding="$(printf '%24s' '')"
for cmd in ${PKGLIBCMD}; do
cmd="${cmd##*/}"
- cmd="${cmd%.sm}"
+ cmd="${cmd%.sho}"
if [ ${#cmd} -gt 20 ]; then
printf ' %s\n%24s' "${cmd}" ''
else