If you can’t visually highlight with plain Space (Termius sends Ctrl+Space), and want to save tmux copy-mode selection to a file, do this:
- Press
Ctrl+b
then:
- Paste these lines one by one, pressing Enter after each:
104.28.37.12/32 | |
104.28.37.13/32 | |
104.28.37.14/32 | |
104.28.37.15/32 | |
104.28.37.16/32 | |
104.28.43.4/32 | |
104.28.43.5/32 | |
104.28.43.6/32 | |
104.28.43.7/32 | |
104.28.43.8/32 |
Open an Elevated PowerShell Prompt
Run the Command
(Get-CimInstance -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey
#!/usr/bin/env bash | |
# exit on error | |
set -o errexit | |
STORAGE_DIR=/opt/render/project/.render | |
if [[ ! -d $STORAGE_DIR/chrome ]]; then | |
echo "...Downloading Chrome" | |
mkdir -p $STORAGE_DIR/chrome | |
cd $STORAGE_DIR/chrome |
CREATE TABLE "cards" ( | |
"id" serial, | |
"card_type" varchar(20), | |
"card_fee" money, | |
PRIMARY KEY ("id") | |
); | |
CREATE TABLE "personalizations" ( | |
"id" serial, | |
"font" varchar(15), |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteCond %{HTTPS} !=on [NC] | |
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/ | |
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] | |
</IfModule> |
version: "3" | |
services: | |
strapi: | |
build: | |
context: ./ | |
container_name: strapi_cms | |
env_file: .env | |
restart: unless-stopped | |
environment: |