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 software is MIT licensed. | |
# Available from https://gist.github.com/marble/b02c753abf19368e0f34678601c157f3/edit | |
# Designed for a Linux like system that has the 'whiptail' command installed. | |
# Copyright <2020> <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to |
################################################## | |
################################################## | |
# Prepare Ubuntu 18.04 for TYPO3 Sphinx | |
# | |
# How to: | |
# | |
# 1. Do step (1) first. | |
# 2. Afterwards run (2) and (3) in the shell. | |
# This can be done in one go - if you like. | |
# |
# mb, 2020-01-28, 2020-01-28 | |
# MIT license | |
# go to the sphinx_typo3_theme | |
# 1. grunt clean | |
# 2. grunt default | |
# 3. python3 setup.py sdist bdist_wheel | |
# Find the final package: | |
theme_package=/home/user/Repositories/github.com/TYPO3-Documentation/sphinx_typo3_theme/dist/sphinx_typo3_theme-4.0.3.dev12+g903f566.tar.gz | |
# Fulfill system requirements: python3, pip, pipenv |
# what we pull | |
TAG_1=develop-benjaminkott | |
# what we use | |
TAG_2="2.5.0-dev-bk" | |
# where to keep the shell-commands.sh file | |
T3DOCS_DOCKRUN_SOURCE_FOLDER=~/.dockrun/dockrun_t3rd | |
# what file gets sourced from .zshrc | |
T3DOCS_DOCKRUN_SOURCE=~/.dockrun/dockrun_t3rd/shell-commands.sh | |
headline () { |
#!/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: |