summaryrefslogtreecommitdiffstats
path: root/btc/mining/bin/cleanup_tmp
diff options
context:
space:
mode:
authorroot <root@chinaman.(none)>2011-07-08 17:24:48 +0200
committerroot <root@chinaman.(none)>2011-07-08 17:24:48 +0200
commit185c18385da6ae11e7325a56bc4bdb0b6755886c (patch)
treeda1102abf533163af97df91d8e8bad1ddf5090b1 /btc/mining/bin/cleanup_tmp
parent6a6b56c1821d435131be8c9b67f4406816b1409a (diff)
mining: added archlinux cruise control
mining/Makefile: added archlinux cruise control (auto installer) which always does the right thing. loosely after http://rubyists.github.com/2011/06/08/how-to-build-a-namecoin-or-bitcoin-miner-in98-easy-steps.html mining/{user/,}/bin:renamed mining/bin/newkey.sh: add policy Xorg keygen
Diffstat (limited to 'btc/mining/bin/cleanup_tmp')
-rwxr-xr-xbtc/mining/bin/cleanup_tmp4
1 files changed, 4 insertions, 0 deletions
diff --git a/btc/mining/bin/cleanup_tmp b/btc/mining/bin/cleanup_tmp
new file mode 100755
index 00000000..e1395b19
--- /dev/null
+++ b/btc/mining/bin/cleanup_tmp
@@ -0,0 +1,4 @@
+#! /bin/sh
+ls -lAtr /tmp/ | sed -rn '
+ /\.so$/{$!{s/.* ([A-Za-z0-9]+\.so)$/rm -v \/tmp\/\1/p}}
+' | sudo sh