Skip to content

Instantly share code, notes, and snippets.

@alexaandrov
alexaandrov / wsl.sh
Last active April 11, 2019 07:59
WSL for vagrant in git bash
# Convert path from windows to linux
function lpwd()
{
pwd=$(pwd)
windowsHome=$(echo $HOME)
linuxHome="~"
lpwd=${pwd/$windowsHome/$linuxHome}
echo $lpwd
}
@alexaandrov
alexaandrov / Readme.md
Created February 15, 2020 11:39 — forked from Dmitriy-8-Kireev/Readme.md
Docker Шпаргалка
@alexaandrov
alexaandrov / rt.sh
Last active March 1, 2021 10:22
Response Time Site Utility
#/bin/sh
uri=$1
repeat=1
if [[ ! -z $2 ]]; then
repeat=$2
fi
while [ $repeat -gt 0 ]; do