From 9a5d1b0956c5b86984d519028269cf128caf2908 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 27 Jan 2017 13:39:54 -0800 Subject: [snippets] I won't manage them that way. --- snippets/sh/modules-info.sh | 3 --- snippets/sh/ssh-check-fingerprint.sh | 4 ---- snippets/sh/top-10-processes.sh | 3 --- 3 files changed, 10 deletions(-) delete mode 100755 snippets/sh/modules-info.sh delete mode 100755 snippets/sh/ssh-check-fingerprint.sh delete mode 100755 snippets/sh/top-10-processes.sh (limited to 'snippets') 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 -- cgit 1.4.1