From 8bbe92059c9fafbc8d00e9a8dbe1aa38527277e5 Mon Sep 17 00:00:00 2001 From: "Louwrentius@gmail.com" Date: Sat, 31 Dec 2011 00:09:44 +0000 Subject: [PATCH] Edited wiki page Manual1 through web user interface. --- wiki/Manual1.wiki | 32 ++++++++------------------------ 1 file changed, 8 insertions(+), 24 deletions(-) diff --git a/wiki/Manual1.wiki b/wiki/Manual1.wiki index ab163c7..eb4556a 100644 --- a/wiki/Manual1.wiki +++ b/wiki/Manual1.wiki @@ -12,26 +12,7 @@ The following output is displayed by PPSS when executed without any options: {{{ bash-3.2$ ppss - -|P|P|S|S| Distributed Parallel Processing Shell Script 2.60 - -usage: ./ppss [ -d | -f ] [ -c ' "$ITEM"' ] - [ -C ] [ -j ] [ -l ] [ -p <# jobs> ] - [ -D ] [ -h ] [ --help ] [ -r ] - -Examples: - ./ppss -d /dir/with/some/files -c 'gzip ' - ./ppss -d /dir/with/some/files -c 'cp "$ITEM" /tmp' -p 2 - ./ppss -f -c 'wget -q -P /destination/directory "$ITEM"' -p 10 - -}}} - -If PPSS is executed with -h, more options are displayed. - -{{{ -bash-3.2$ ./ppss -h - -|P|P|S|S| Distributed Parallel Processing Shell Script 2.95 +|P|P|S|S| Distributed Parallel Processing Shell Script 2.97 PPSS is a Bash shell script that executes commands in parallel on a set of items, such as files in a directory, or lines in a file. The purpose @@ -40,7 +21,7 @@ of PPSS is to make it simple to benefit from multiple CPUs or CPU cores. This short summary only discusses options for stand-alone mode. For a full listing of all options, run PPSS with the options --help -Usage ./ppss [ options ] +Usage ./ppss [[ options ]] --command | -c Command to execute. Syntax: ' ' including the single quotes. Example: -c 'ls -alh '. It is also possible to specify where an item @@ -78,9 +59,11 @@ Usage ./ppss [ options ] daemon mode. Requires inotify-tools. Enabled by default if available. Automatically disabled if NFS is used as the daeon source dir. ---no-recursion|-r By default, recursion of directories is enabled when the -d option is - used. If this is not prefered, this can be disabled with this option - Only files within the specified directory will be processed. +--no-traversal|-r By default, PPSS uses the regular 'find' command to list all files + within the directory specified by the -d option. If you do not wish + for PPSS to process files in sub directories, use this option. + Only files within the specified directory will be processed. Any + subdirectories will then be ignored. --email | -e PPSS sends an e-mail if PPSS has finished. It is also used if processing of an item has failed (configurable, see -h). @@ -95,6 +78,7 @@ Example: encoding some wav files to mp3 using lame: Extended usage: use --help + }}} A detailed explanation based on examples will follow.