mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
Catch no args passed
This commit is contained in:
parent
f2713f45b6
commit
95d5d05075
@ -1,5 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Deletes certain lines of ~/.ssh/known_hosts
|
# Deletes certain lines of ~/.ssh/known_hosts
|
||||||
|
if [ $# -eq 0 ]; then
|
||||||
|
echo "Usage: ./delete_certain_known_hosts 3 5 7 23"
|
||||||
|
echo "Will catch duplicate line numbers"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
known_hosts_path=~/.ssh/known_hosts
|
known_hosts_path=~/.ssh/known_hosts
|
||||||
lines_in_known_hosts=$(wc -l "$known_hosts_path" | awk '{print $1}')
|
lines_in_known_hosts=$(wc -l "$known_hosts_path" | awk '{print $1}')
|
||||||
IFS=' '
|
IFS=' '
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user