Shell Script 2
자주 사용하지만 잘 잊어버리는 shell script 모음 2
LOOP
```shell?line_number=false #!/bin/sh
자주 사용하지만 잘 잊어버리는 shell script 모음 2
```shell?line_number=false #!/bin/sh
summary : chapter7,8,9 내용 정리/요약, cython / concurrency / multiprocessing
summary : kernel 관련 기억/요약/link
summary : chapter5,6 내용 정리/요약, iterator / generator, matrix / vector
summary : chapter3,4 내용 정리/요약, list / tuple, dict / set
참고 : https://github.com/pyenv/pyenv/wiki/common-build-problems
$ sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev \
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
xz-utils tk-dev libffi-dev liblzma-dev
$ curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
$ echo 'export PATH="/home/suker/.pyenv/bin:$PATH"' > ~/.bash_profile
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
$ echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile
$ source ~/.bash_profile