summaryrefslogtreecommitdiffstats
path: root/software/unix-tricks
diff options
context:
space:
mode:
Diffstat (limited to 'software/unix-tricks')
-rw-r--r--software/unix-tricks13
1 files changed, 0 insertions, 13 deletions
diff --git a/software/unix-tricks b/software/unix-tricks
deleted file mode 100644
index 265609f..0000000
--- a/software/unix-tricks
+++ /dev/null
@@ -1,13 +0,0 @@
-=====================================
-UNIX Tricks
-=====================================
-
-See also `freebsd </k/software/freebsd-tricks>`_ and
-`debian </k/software/debian>`_ tricks.
-
-Fork many processes with `xargs`
------------------------------------
-To fork off 10 instances of sleep with incremented lengths, 5 at a time::
-
-$ seq 10 20 | xargs -n 1 -P 5 sleep
-