forked from CAU-ARTECH-ARENA/Vision-Art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexe.sh
28 lines (20 loc) · 746 Bytes
/
exe.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
echo "linekd with www.processing.org/download...loading"
start chrome https://processing.org/download/
start chrome https://editor.p5js.org/
:<<'END'
cd example
find . -name '*.pde' -exec mv {} ../../../../Desktop \;
find . -name '*.py' -exec mv {} ../../../../Desktop \;
echo "move pde and py files to Desktop Directory"
cd ../../../../Desktop
mkdir 01-Thresholding
mv 01-Thresholding.pde
mkdir example_python
find . -name '*.py' -exec mv {} example_python \;
END
:<<'END'
linked with www.processing.org/download
- windows -> https://download.processing.org/processing-3.5.4-windows64.zip
- linux -> https://download.processing.org/processing-3.5.4-linux64.tgz
- Mac OS -> https://download.processing.org/processing-3.5.4-macosx.zip
END