- hello.sh
- chmod 700 hello.sh
- ./hello.sh
- ex) ffmpeg -i movie.mov -vcodec copy -acodec copy out.mp4 (convert mov to mp4)
- grep -r -l 'keyword' . (-r recursive, -l print only file names, . for the current directory)
- conda create -n "kim" python=3.5, conda create --name tf_gpu tensorflow-gpu
- source activate "kim"
- conda env list
- conda env remove -n kim
- conda install -c anaconda tensorflow-gpu
- track GPU usage: Nvidia-smi -l 1