-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcreate.sh
executable file
·70 lines (58 loc) · 1.39 KB
/
create.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
#!/bin/bash
#
# This script automatically generates
# a new documentation file.
#
# * docs/filename.md
#
# Usage: newdoc.sh [name]
# e.g: newdoc.sh mergesort
#
# Author: Carlos Abraham Hernandez (abranhe.com)
#
help() {
echo
echo "Usage:"
echo " $ newdoc.sh [name]"
echo
echo "Flags:"
echo " -h --help Display help information"
echo
echo "Example:"
echo " $ newdoc.sh mergesort"
echo
}
shortHelp() {
echo
echo "Usage: newdoc.sh [name]"
echo " e.g: newdoc.sh mergesort"
echo
echo "Type --help for more information"
echo
exit 0
}
if [ -z "${1}" ]; then
shortHelp
fi
if [ "$1" == "-h" ] || [ "$1" == "--help" ]; then
help
fi
echo "Navigating to docs/ folder..."
cd ../docs/
algorithm_name=$1
# Capitalizing the fist letter https://stackoverflow.com/a/12487465/7602110
algorithm_capital_case="$(tr '[:lower:]' '[:upper:]' <<< ${algorithm_name:0:1})${algorithm_name:1}"
# Replacing characters in bash https://stackoverflow.com/a/5928254/7602110
algorithm=${algorithm_capital_case//-/ }
echo "Creating file..."
cat >> $algorithm_name.md <<- EOF
---
id: $algorithm_name
title: $algorithm
sidebar_label: $algorithm
---
[Open a pull request](https://github.com/AllAlgorithms/algorithms/tree/master/docs/$1.md) to add the content for this algorithm.
EOF
export GREEN='\033[0;32m'
export NC='\033[0m'
echo -e "The file ${GREEN}${algorithm_name}.md${NC} was created"