(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| #! /usr/bin/env bash | |
| set -e | |
| eval "$(rbenv init -)" | |
| for version in `rbenv whence gem`; do | |
| rbenv shell "$version" | |
| echo "Updating rubygems for $version" | |
| gem update --system --no-document --quiet |
| #!/bin/bash | |
| mkdir my_project | |
| cd my_project | |
| echo " . . . Downloading file stanford-ner-2014-08-27.zip" | |
| # NOTE: need to update link for further versions | |
| wget http://nlp.stanford.edu/software/stanford-ner-2014-08-27.zip | |
| echo " . . . Unpacking stanford-ner-2014-08-27.zip" |