-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathghd.sh
56 lines (53 loc) · 940 Bytes
/
ghd.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
# !/bin/bash
# https://github.com/RickBarretto/Github-cli-scrapy
cd ghd/Scripts/
case $1 in
explore)
exec ./explore.sh $*
;;
learn)
exec ./learntocode.sh $*
;;
devs)
exec ./dev.sh $2 $3 $4
;;
search)
exec ./search.sh $*
;;
get)
case $3 in
--repos | -r)
exec ./repos.sh $*
;;
*)
exec ./user.sh $*
;;
esac
;;
opensource)
start https://opensource.guide/
;;
guide)
start https://opensource.guide/
;;
--help)
exec ./help.sh
;;
open)
exec ./open.sh $*
;;
topic)
exec ./topics.sh $*
;;
test)
cd ../test/
exec ./test.sh $*
;;
events)
exec ./events.sh
;;
*)
exec ./explore.sh $*
;;
esac
exit