Skip to content

Commit 496ab8d

Browse files
committed
initial commit
1 parent f87f25c commit 496ab8d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

patch/test2-patch

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

0 commit comments

Comments
 (0)