-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathinit-commands.sh
executable file
·71 lines (61 loc) · 2.09 KB
/
init-commands.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
# See README for usage
# This file will create stub files for all the commands and create the correct symbolic links for the JSON files
# first check to make sure there are arguments
if [ -z "$1" ]; then
echo "You must supply a path to the command docs as the first argument"
exit 1
fi
if [ -z "$2" ]; then
echo "You must supply a path to the command json as the second argument"
exit 1
fi
# check for validity of these agruments as paths
if [ ! -d "$1" ]; then
echo "The command doc directory must exist and be a valid path"
exit 1
fi
if [ ! -d "$2" ]; then
echo "The command JSON directory must exist and be a valid path"
exit 1
fi
if [ ! -d "$3" ]; then
echo "The bloom module command JSON directory must exist and be a valid path"
exit 1
fi
if [ ! -d "$4" ]; then
echo "The JSON module command JSON directory must exist and be a valid path"
exit 1
fi
ln -s $1 ./build-command-docs
ln -s $2 ./build-command-json
ln -s $3 ./build-bloom-command-json
ln -s $4 ./build-json-command-json
for fname in $(find $1 -maxdepth 1 -iname "*.md")
do
base=${fname##*/}
command=${base%.*}
command_upper=$(awk '{ print toupper($0) }' <<< $command)
if [[ "$command" != "index" ]]; then
if [ -f "$2/$command.json" ]; then
metadata_path="/commands/$command.json in the 'valkey' repo"
elif [ -f "$3/$command.json" ]; then
metadata_path="/commands/$command.json in the 'valkey-bloom' repo"
elif [ -f "$4/$command.json" ]; then
metadata_path="/commands/$command.json in the 'valkey-json' repo"
fi
cat << EOF > "./content/commands/$command.md"
+++
# This is a generated stub file.
# To edit the command description see /commands/$command.md in the 'valkey-doc' repo
# The command metadata is generated from $metadata_path
aliases = ["/commands/$command_upper/"]
+++
EOF
fi
done
echo "Command stub files created."
for datafile in groups.json resp2_replies.json resp3_replies.json modules.json; do
ln -s "../${1}/../${datafile}" "./_data/${datafile}"
echo "Created link to ${datafile}"
done