8 lines
145 B
Bash
Executable File
8 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd ~
|
|
git clone https://github.com/glample/fastBPE.git
|
|
cd fastBPE
|
|
g++ -std=c++11 -pthread -O3 fastBPE/main.cc -IfastBPE -o fast
|
|
cd ~
|