Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
<?php | |
// Location: your_ext/Classes/Domain/Model/FalUpload.php | |
namespace VENDOR\YourExt\Domain\Model; | |
class FalUpload extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity | |
{ | |
/** | |
* teaserImage | |
* |
#!/bin/bash | |
# This is a script I used when I wanted to create a symlink on a remote web | |
# server, but that web server had the 'ln' command disabled (using cPanel's | |
# Jailshell). | |
# It works by creating a symlink on the local computer, then using rsync to copy | |
# that symlink to the remote server. | |
# Example: |