Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| // Go to menue: | |
| // find->find in files | |
| // Switch on reg_ex button | |
| // Find: | |
| ^(.*)$ | |
| // Where: | |
| c:\your_folder\,*.php,*.phtml,*.js,*.inc,*.html, -*/folder_to_exclude/* | |
| // Then click on the find button | |
| // Be careful to not click on Replace!!! |
| 2015/09/17 04:03:52 [INFO] Packer version: 0.8.6 f8f7b7a34c1be06058f5aca23a51247db12cdbc5+CHANGES | |
| 2015/09/17 04:03:52 Packer Target OS/Arch: windows amd64 | |
| 2015/09/17 04:03:52 Built with Go Version: go1.5 | |
| 2015/09/17 04:03:52 [DEBUG] Discovered plugin: amazon-chroot = C:\HashiCorp\packer\packer-builder-amazon-chroot.exe | |
| 2015/09/17 04:03:52 [DEBUG] Discovered plugin: amazon-ebs = C:\HashiCorp\packer\packer-builder-amazon-ebs.exe | |
| 2015/09/17 04:03:52 [DEBUG] Discovered plugin: amazon-instance = C:\HashiCorp\packer\packer-builder-amazon-instance.exe | |
| 2015/09/17 04:03:52 [DEBUG] Discovered plugin: digitalocean = C:\HashiCorp\packer\packer-builder-digitalocean.exe | |
| 2015/09/17 04:03:52 [DEBUG] Discovered plugin: docker = C:\HashiCorp\packer\packer-builder-docker.exe | |
| 2015/09/17 04:03:52 [DEBUG] Discovered plugin: file = C:\HashiCorp\packer\packer-builder-file.exe | |
| 2015/09/17 04:03:52 [DEBUG] Discovered plugin: googlecompute = C:\HashiCorp\packer\packer-builder-googlecompute.exe |
| 2015/09/08 23:48:24 [INFO] Packer version: 0.8.5 60bbe850ef0b7fec19eba1929d83e7267ca1572b | |
| 2015/09/08 23:48:24 Packer Target OS/Arch: windows amd64 | |
| 2015/09/08 23:48:24 Built with Go Version: go1.4.2 | |
| 2015/09/08 23:48:24 [DEBUG] Discovered plugin: amazon-chroot = C:\HashiCorp\packer\packer-builder-amazon-chroot.exe | |
| 2015/09/08 23:48:24 [DEBUG] Discovered plugin: amazon-ebs = C:\HashiCorp\packer\packer-builder-amazon-ebs.exe | |
| 2015/09/08 23:48:24 [DEBUG] Discovered plugin: amazon-instance = C:\HashiCorp\packer\packer-builder-amazon-instance.exe | |
| 2015/09/08 23:48:24 [DEBUG] Discovered plugin: digitalocean = C:\HashiCorp\packer\packer-builder-digitalocean.exe | |
| 2015/09/08 23:48:24 [DEBUG] Discovered plugin: docker = C:\HashiCorp\packer\packer-builder-docker.exe | |
| 2015/09/08 23:48:24 [DEBUG] Discovered plugin: file = C:\HashiCorp\packer\packer-builder-file.exe | |
| 2015/09/08 23:48:24 [DEBUG] Discovered plugin: googlecompute = C:\HashiCorp\packer\packer-builder-googlecompute.exe |
| 2015/07/25 15:46:49 [INFO] Packer version: 0.8.2 28c80a648c7e35c320530561a00c889837bd6b22 | |
| 2015/07/25 15:46:49 Packer Target OS/Arch: windows amd64 | |
| 2015/07/25 15:46:49 Built with Go Version: go1.4.2 | |
| 2015/07/25 15:46:49 [DEBUG] Discovered plugin: amazon-chroot = C:\HashiCorp\packer\packer-builder-amazon-chroot.exe | |
| 2015/07/25 15:46:49 [DEBUG] Discovered plugin: amazon-ebs = C:\HashiCorp\packer\packer-builder-amazon-ebs.exe | |
| 2015/07/25 15:46:49 [DEBUG] Discovered plugin: amazon-instance = C:\HashiCorp\packer\packer-builder-amazon-instance.exe | |
| 2015/07/25 15:46:49 [DEBUG] Discovered plugin: digitalocean = C:\HashiCorp\packer\packer-builder-digitalocean.exe | |
| 2015/07/25 15:46:49 [DEBUG] Discovered plugin: docker = C:\HashiCorp\packer\packer-builder-docker.exe | |
| 2015/07/25 15:46:49 [DEBUG] Discovered plugin: file = C:\HashiCorp\packer\packer-builder-file.exe | |
| 2015/07/25 15:46:49 [DEBUG] Discovered plugin: googlecompute = C:\HashiCorp\packer\packer-builder-googlecompute.exe |
| """Pexpect is a Python module for spawning child applications and controlling | |
| them automatically. Pexpect can be used for automating interactive applications | |
| such as ssh, ftp, passwd, telnet, etc. It can be used to a automate setup | |
| scripts for duplicating software package installations on different servers. It | |
| can be used for automated software testing. Pexpect is in the spirit of Don | |
| Libes' Expect, but Pexpect is pure Python. Other Expect-like modules for Python | |
| require TCL and Expect or require C extensions to be compiled. Pexpect does not | |
| use C, Expect, or TCL extensions. It should work on any platform that supports | |
| the standard Python pty module. The Pexpect interface focuses on ease of use so | |
| that simple tasks are easy. |
| FILE SPACING: | |
| # double space a file | |
| sed G | |
| # double space a file which already has blank lines in it. Output file | |
| # should contain no more than one blank line between lines of text. | |
| sed '/^$/d;G' |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| new PrintStream( new FileOutputStream(FileDescriptor.out), true, System.getProperty("file.encoding") ) |