summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-11-27 20:46:53 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-11-27 23:03:42 -0500
commite02de80f8a53b51f4c6188a6b7d2943c18ee3032 (patch)
tree5f078324dad6efbdede1d9fcde01a73cd7bd4fc6
parent5483a74c7bd999d134ab1365b2d9a709df64c2c6 (diff)
remove sysfiles
-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