From c6424a10bac9c50ba9edd2fe28eaaf040d957f43 Mon Sep 17 00:00:00 2001 From: lbonanomi <5369016+lbonanomi@users.noreply.github.com> Date: Mon, 24 Dec 2018 10:06:35 -0500 Subject: [PATCH] ssh -tt $HOST bash Skip login scripts when SSHing, good for misconfigured .profiles or 100%-full disks. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 4fd671f..79aa7e8 100644 --- a/README.md +++ b/README.md @@ -1627,6 +1627,12 @@ function _scg() { } ``` +###### SSH without processing any login scripts + +```bash +ssh -tt user@host bash +``` + ___ ##### Tool: [linux-dev](https://www.tldp.org/LDP/abs/html/devref1.html)