dotfiles

<-- duh.
Log | Files | Refs | LICENSE

commit 66fbc7ff9b9a51ede0de6046c42150548b4a688f
parent c0c38852998dc51de465b4238f301b9b2d02733a
Author: hhvn <dev@hhvn.uk>
Date:   Sun,  6 Jun 2021 16:19:16 +0100

.s/b/finger: remove

Diffstat:
D.scripts/bin/finger | 35-----------------------------------
1 file changed, 0 insertions(+), 35 deletions(-)

diff --git a/.scripts/bin/finger b/.scripts/bin/finger @@ -1,35 +0,0 @@ -#!/bin/sh -# -# finger.sh -# Created by Hayden Hamilton -# -# hayden@haydenvh.com -# Copyright (c) 2020 Hayden Hamilton -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. -# -# This work is free. You can redistribute it and/or modify it under the -# terms of the Do What The Fuck You Want To Public License, Version 2, -# as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. - -# usage: finger [user]@<host> -# tries to ssh into machine if port 79 is not exposed - -user=${1%%@*} -hostport="${1#*@}" -host=${hostport%:*} -echo "$host" | grep ':' >/dev/null && port=${hostport##*:} - -( - [ -z $user ] && { - printf "\r\n" | nc ${host:-localhost} ${port:-79} - } || { - printf "$user\r\n" | nc ${host:-localhost} ${port:-79} - } -) | tr -d '\r'