diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2024-02-23 03:08:52 -0800 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2024-02-23 03:08:52 -0800 |
commit | dd78faaf40862bd1552ec36c41374b527f747284 (patch) | |
tree | b914f890c545db7168984f7bcc15cfc7c976c1d3 | |
parent | c808bb6ee7f77f077308a1f06f63dbee6a928f6d (diff) |
Reorganize shell scripts into sh dir, consider in the future fsh will have different kinds of files
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | sh/alarm (renamed from alarm) | 0 | ||||
-rwxr-xr-x | sh/backlight (renamed from backlight) | 0 | ||||
-rwxr-xr-x | sh/bell (renamed from bell) | 0 | ||||
-rwxr-xr-x | sh/ccgp (renamed from ccgp) | 0 | ||||
-rwxr-xr-x | sh/cfg (renamed from cfg) | 0 | ||||
-rwxr-xr-x | sh/chmodef (renamed from chmodef) | 0 | ||||
-rwxr-xr-x | sh/curlqb (renamed from curlqb) | 0 | ||||
-rwxr-xr-x | sh/dateft (renamed from dateft) | 0 | ||||
-rwxr-xr-x | sh/dirnameall (renamed from dirnameall) | 0 | ||||
-rwxr-xr-x | sh/gita (renamed from gita) | 0 | ||||
-rwxr-xr-x | sh/gitfork (renamed from gitfork) | 0 | ||||
-rwxr-xr-x | sh/gitmetap (renamed from gitmetap) | 0 | ||||
-rwxr-xr-x | sh/gitmetar (renamed from gitmetar) | 0 | ||||
-rwxr-xr-x | sh/gitpu (renamed from gitpu) | 0 | ||||
-rwxr-xr-x | sh/grrc (renamed from grrc) | 0 | ||||
-rwxr-xr-x | sh/il (renamed from il) | 0 | ||||
-rwxr-xr-x | sh/lastarg (renamed from lastarg) | 0 | ||||
-rwxr-xr-x | sh/loop (renamed from loop) | 0 | ||||
-rwxr-xr-x | sh/lsp (renamed from lsp) | 0 | ||||
-rwxr-xr-x | sh/mll (renamed from mll) | 0 | ||||
-rwxr-xr-x | sh/mmi (renamed from mmi) | 0 | ||||
-rwxr-xr-x | sh/mpra (renamed from mpra) | 0 | ||||
-rwxr-xr-x | sh/mpva (renamed from mpva) | 0 | ||||
-rwxr-xr-x | sh/mpvy (renamed from mpvy) | 0 | ||||
-rwxr-xr-x | sh/mvln (renamed from mvln) | 0 | ||||
-rwxr-xr-x | sh/mvtr (renamed from mvtr) | 0 | ||||
-rwxr-xr-x | sh/mvtu (renamed from mvtu) | 0 | ||||
-rwxr-xr-x | sh/news (renamed from news) | 0 | ||||
-rwxr-xr-x | sh/o (renamed from o) | 0 | ||||
-rwxr-xr-x | sh/orgext (renamed from orgext) | 0 | ||||
-rwxr-xr-x | sh/pa (renamed from pa) | 0 | ||||
-rwxr-xr-x | sh/pq (renamed from pq) | 0 | ||||
-rwxr-xr-x | sh/px (renamed from px) | 0 | ||||
-rwxr-xr-x | sh/qg (renamed from qg) | 0 | ||||
-rwxr-xr-x | sh/qw (renamed from qw) | 0 | ||||
-rwxr-xr-x | sh/rate (renamed from rate) | 0 | ||||
-rwxr-xr-x | sh/reco (renamed from reco) | 0 | ||||
-rwxr-xr-x | sh/rfp (renamed from rfp) | 0 | ||||
-rwxr-xr-x | sh/sbar (renamed from sbar) | 0 | ||||
-rwxr-xr-x | sh/ta (renamed from ta) | 0 | ||||
-rwxr-xr-x | sh/time-uuid (renamed from time-uuid) | 0 | ||||
-rwxr-xr-x | sh/topa (renamed from topa) | 0 | ||||
-rwxr-xr-x | sh/upd (renamed from upd) | 0 | ||||
-rwxr-xr-x | sh/vinfo (renamed from vinfo) | 0 | ||||
-rwxr-xr-x | sh/wh (renamed from wh) | 0 | ||||
-rwxr-xr-x | sh/wtr (renamed from wtr) | 0 | ||||
-rwxr-xr-x | sh/xmq (renamed from xmq) | 0 |
48 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ PREFIX = /usr/local install: mkdir -p ${DESTDIR}${PREFIX}/bin # Another way would be define and use INSTALL INSTALL_PROGRAM INSTALL_DATA instead of use `cp -f` or `install` directly, see `info make` - cp -f ${SH} ${DESTDIR}${PREFIX}/bin + for i in ${SH}; do cp -f sh/$$i ${DESTDIR}${PREFIX}/bin; done uninstall: for i in ${SH}; do rm -f ${DESTDIR}${PREFIX}/bin/$$i; done diff --git a/dirnameall b/sh/dirnameall index befd347..befd347 100755 --- a/dirnameall +++ b/sh/dirnameall |