docker build PATH
docker images
docker ps
| #!/usr/bin/env bash | |
| set -e | |
| service ssh start | |
| exec "$@" |
:CtrlP or :CtrlP [starting-directory] to invoke CtrlP in find file mode.:CtrlPBuffer or :CtrlPMRU to invoke CtrlP in find buffer or find MRU file mode.:CtrlPMixed to search in Files, Buffers and MRU files at the same time.Check :help ctrlp-commands and :help ctrlp-extensions for other commands.
| (define (fib n) | |
| (cond ((= n 0) 0) | |
| ((= n 1) 1) | |
| (else (+ (fib (- n 1)) | |
| (fib (- n 2)))))) |