File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # This test-patch script should serve as a
4+ # template for future patch scripts.
5+ # 20210805 KM4ACK
6+
7+ # Give this patch a unique name. A good idea is
8+ # to give it the application name that is being
9+ # patched followed by the date. ie FLDIDI20210805
10+
11+ PATCHNAME=test-patch20210807
12+
13+ PATCHFILE=$HOME /.config/patch
14+ touch $PATCHFILE
15+ # ##############################
16+ # Patch script commands go here#
17+ # ##############################
18+ clear; echo ; echo
19+ echo " This is a test patch"
20+
21+
22+ # ############################################
23+ # write patch name to a file so we can #
24+ # look and see if it has been applied before.#
25+ # This is checked by the patch-menu script #
26+ # before running the patch #
27+ # ############################################
28+ echo " $PATCHNAME " >> $PATCHFILE
You can’t perform that action at this time.
0 commit comments