This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/tcsh | |
| # Grab user information. | |
| echo "PrivateInternetAccess OpenVPN Setup:" | |
| echo " https://www.privateinternetaccess.com/pages/client-control-panel" | |
| echo " -> PPTP/L2TP/SOCKS Username and Password" | |
| echo -n "User: " | |
| set user = $< | |
| echo -n "Pass: " | |
| set pass = $< |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/php | |
| <?php | |
| error_reporting(E_ALL); | |
| if (count($argv) <= 1) { | |
| print("usage createMockup src_dir dst_dir images_dir\n"); | |
| print("\tsrc_dir : dir where all bmml file are\n"); | |
| print("\tdst_dir : dir where write all html files\n"); | |
| print("\timages_dir : dir where all export mockup png are (will be copied to the \$dst_dir/images directory)\n"); | |
| exit(1); | |
| } |