diff options
Diffstat (limited to 'snippets/sh')
-rwxr-xr-x | snippets/sh/modules-info.sh | 3 | ||||
-rwxr-xr-x | snippets/sh/ssh-check-fingerprint.sh | 4 | ||||
-rwxr-xr-x | snippets/sh/top-10-processes.sh | 3 |
3 files changed, 0 insertions, 10 deletions
diff --git a/snippets/sh/modules-info.sh b/snippets/sh/modules-info.sh deleted file mode 100755 index a0d1733..0000000 --- a/snippets/sh/modules-info.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -modinfo $(cut -d' ' -f1 /proc/modules) | sed '/^dep/s/$/\n/; /^file\|^desc\|^dep/!d' diff --git a/snippets/sh/ssh-check-fingerprint.sh b/snippets/sh/ssh-check-fingerprint.sh deleted file mode 100755 index 517fb5b..0000000 --- a/snippets/sh/ssh-check-fingerprint.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -KEY=${1:-$HOME/.ssh/id_rsa.pub} -ssh-keygen -lf "${KEY}" diff --git a/snippets/sh/top-10-processes.sh b/snippets/sh/top-10-processes.sh deleted file mode 100755 index 816d74b..0000000 --- a/snippets/sh/top-10-processes.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -ps auxf | sort -nr -k 4 | head -10 |