ssh -tt $HOST bash

Skip login scripts when SSHing, good for misconfigured .profiles or 100%-full disks.
This commit is contained in:
lbonanomi
2018-12-24 10:06:35 -05:00
committed by GitHub
parent 85f64bb9b1
commit c6424a10ba

View File

@@ -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)