start new:
tmux
start new with session name:
tmux new -s myname
| # -*- coding: utf-8 -*- | |
| """ | |
| ========= | |
| tikzmagic | |
| ========= | |
| Magics for generating figures with TikZ. | |
| .. note:: |
| # Ways to execute a shell script in Ruby | |
| # Example Script - Joseph Pecoraro | |
| cmd = "echo 'hi'" # Sample string that can be used | |
| # 1. Kernel#` - commonly called backticks - `cmd` | |
| # This is like many other languages, including bash, PHP, and Perl | |
| # Returns the result of the shell command | |
| # Docs: http://ruby-doc.org/core/classes/Kernel.html#M001111 |