Uploaded February 2023 | Updated September 2026, 2 weeks ago
This video is about a couple of shortcut scripts I use with SSH to access machines on my local network. The scripts are below. :)
Find out how to install and setup SSH: youtube.com/watch?v=u-X3q6CmsKc
Scripts for sshin and sftpin:
#!/bin/bash
# SSH login shorthand command: "sshin (last two digits of IP)"
# By Joe Collins. (ezeelinux.com GNU/General Public License version 2.0)
ssh -X 192.168.0."$1"
#!/bin/bash
# SFTP Shorthand command: "sftpin" (last two digits of host IP)
# By Joe Collins. (ezeelinux.com GNU/General Public License version 2.0)
sftp 192.168.0."$1"
This video is about a couple of shortcut scripts I use with SSH to access machines on my local network. The scripts are below. :)
Find out how to install and setup SSH: youtube.com/watch?v=u-X3q6CmsKc
Scripts for sshin and sftpin:
#!/bin/bash
# SSH login shorthand command: "sshin (last two digits of IP)"
# By Joe Collins. (ezeelinux.com GNU/General Public License version 2.0)
ssh -X 192.168.0."$1"
#!/bin/bash
# SFTP Shorthand command: "sftpin" (last two digits of host IP)
# By Joe Collins. (ezeelinux.com GNU/General Public License version 2.0)
sftp 192.168.0."$1"










