summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--Makefile1
-rw-r--r--sysfiles.sh11
3 files changed, 0 insertions, 13 deletions
diff --git a/.gitignore b/.gitignore
index 73dda7a..72f6ec0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,7 +11,6 @@ offlineimap-runner
offlineimap-exit
ord
roll
-sysfiles
tempmon
urldecode
v-www-browser
diff --git a/Makefile b/Makefile
index 92063ca..b429e91 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,6 @@ BINFILES = \
offlineimap-exit \
ord \
roll \
- sysfiles \
tempmon \
urldecode \
v-www-browser \
diff --git a/sysfiles.sh b/sysfiles.sh
deleted file mode 100644
index 54229d8..0000000
--- a/sysfiles.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-cputime_file=${TMPDIR-/tmp}/cputime
-
-mpstat -P ALL 1 > "$cputime_file" &
-
-while true; do
- cputime="`tail -n4 "$cputime_file"`"
- echo "$cputime">"$cputime_file"
- sleep 1
-done