Makefile: added rrm.
This commit is contained in:
parent
4fee394e4a
commit
3320b47c91
7
Makefile
7
Makefile
|
@ -1,4 +1,4 @@
|
|||
all: blink/blink.1 histogram/histogram.1 upsidedown/upsidedown.1 tracefile/tracefile.1 timestamp/timestamp.1 rand/rand.1 goodpasswd/goodpasswd.1
|
||||
all: blink/blink.1 histogram/histogram.1 upsidedown/upsidedown.1 tracefile/tracefile.1 timestamp/timestamp.1 rand/rand.1 rrm/rrm.1 goodpasswd/goodpasswd.1
|
||||
|
||||
blink/blink.1: blink/blink
|
||||
pod2man blink/blink > blink/blink.1
|
||||
|
@ -12,6 +12,9 @@ histogram/histogram.1: histogram/histogram
|
|||
rand/rand.1: rand/rand
|
||||
pod2man rand/rand > rand/rand.1
|
||||
|
||||
rrm/rrm.1: rrm/rrm
|
||||
pod2man rrm/rrm > rrm/rrm.1
|
||||
|
||||
timestamp/timestamp.1: timestamp/timestamp
|
||||
pod2man timestamp/timestamp > timestamp/timestamp.1
|
||||
|
||||
|
@ -26,6 +29,6 @@ wssh/wssh.1: wssh/wssh
|
|||
|
||||
install:
|
||||
mkdir -p /usr/local/bin
|
||||
parallel eval ln -sf `pwd`/*/{} /usr/local/bin/{} ::: blink reniced em field forever neno rn stdout tracefile w4it-for-port-open upsidedown histogram goodpasswd mtrr not summer timestamp transpose wssh aptsearch rand
|
||||
parallel eval ln -sf `pwd`/*/{} /usr/local/bin/{} ::: blink reniced em field forever neno rn stdout tracefile w4it-for-port-open upsidedown histogram goodpasswd mtrr not summer timestamp transpose wssh aptsearch rand rrm
|
||||
mkdir -p /usr/local/share/man/man1
|
||||
parallel ln -sf `pwd`/{} /usr/local/share/man/man1/{/} ::: */*.1
|
||||
|
|
6
README
6
README
|
@ -12,13 +12,17 @@ neno - No error no output. Only print STDERR and STDOUT if the command fails.
|
|||
|
||||
rand - Generate (pseudo-)random data
|
||||
|
||||
rclean - Remove files with MD5 sums recorded by rrm (see below).
|
||||
|
||||
reniced - Renice all commands running more than 1 CPU minute unless they are niced or whitelisted.
|
||||
|
||||
rn - Move file(s)/dir(s) to ~/.rm/ (wastebasket).
|
||||
|
||||
rrm - Record file's MD5 sum before removing it.
|
||||
|
||||
stdout - Redirect both STDERR and STDOUT to STDOUT.
|
||||
|
||||
tracefile - List files being accessed by program.
|
||||
tracefile - List files/dirs being accessed by program.
|
||||
|
||||
w4it-for-port-open - Block until the given port opens on a given host.
|
||||
|
||||
|
|
Loading…
Reference in a new issue