Skip to content

Instantly share code, notes, and snippets.

View ljaljushkin's full-sized avatar
🎯
Focusing

Lyalyushkin Nikolay ljaljushkin

🎯
Focusing
View GitHub Profile
@vuiseng9
vuiseng9 / docker-basics.md
Created April 9, 2019 03:09 — forked from dennis-lee/docker-basics.md
My cheat sheet for Docker related things
@vuiseng9
vuiseng9 / cli-cheatsheet.md
Last active September 22, 2023 17:18
CLI Cheatsheet

Commandlines and Tricks

Your sync script between two servers, skipping existing files

#!/usr/bin/env bash

DESTHOST=destination
LOGDIR=rsync.log
TS=$(date +%F_%H-%M-%S)

mkdir -p $LOGDIR/$TS
@vuiseng9
vuiseng9 / bash-scripting.md
Last active December 17, 2020 23:15
my favourite bash routines

Quick Guide - Bash Scripting

Mar'19, vuiseng9

The Shebang

#!/usr/bin/env bash

/bin/bash # for docker entrypoint