You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl -sS https://raw.githubusercontent.com/chvolkmann/code-connect/main/shell/install.sh| sh
69
+
sh -c "$(curl -sSLo- https://raw.githubusercontent.com/chvolkmann/code-connect/main/shell/install.sh)"
70
70
```
71
71
72
72
This downloads [`code_connect.py`](./bin/code_connect.py) along with two scripts and sets up aliases in your `.bashrc` for you. See [`shell/code.sh`](./shell/code.sh) and [`shell/code-connect.sh`](./shell/code-connect.sh)
@@ -76,7 +76,7 @@ This downloads [`code_connect.py`](./bin/code_connect.py) along with two scripts
76
76
With [`shell/uninstall.sh`](./shell/uninstall.sh)
77
77
78
78
```sh
79
-
curl -sS https://raw.githubusercontent.com/chvolkmann/code-connect/main/shell/uninstall.sh| sh
79
+
sh -c "$(curl -sSLo- https://raw.githubusercontent.com/chvolkmann/code-connect/main/shell/uninstall.sh)"
80
80
```
81
81
82
82
Deletes the aliases from `~/.bashrc` and removes the folder `~/.code-connect`
0 commit comments