-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbring_me.sh
More file actions
29 lines (28 loc) · 923 Bytes
/
bring_me.sh
File metadata and controls
29 lines (28 loc) · 923 Bytes
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
#!/bin/bash
#Opens My Udemy courses and netflix
case "$1" in
"react")
open https://www.udemy.com/react-redux/learn/v4/overview
open https://www.icloud.com/pages/
cd ~/code/wdi/react-books
;;
"ios")
open https://www.udemy.com/ios9-swift/learn/v4/overview
open https://www.icloud.com/pages/
;;
"js")
open https://www.udemy.com/understand-javascript/learn/v4/overview
open https://www.icloud.com/pages/
;;
"rspec")
open https://www.udemy.com/rubyonrails-bdd-rspec-capybara/learn/v4/overview
open https://www.icloud.com/pages/
cd ~/code/wdi/blog_app_tests
;;
"netflix")
open https://www.netflix.com/browse
;;
*)
echo "This script takes one of the following arguments: react, ios, js, rspec, netflix" ; exit 1
;;
esac