User Tools

Site Tools


p:andunix-tool:index
Please note, that this is an old archived version of this site. Check out the new version at andunix.net!

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

p:andunix-tool:index [2013-02-03 10:26]
andunix created
p:andunix-tool:index [2013-02-03 11:12] (current)
andunix
Line 1: Line 1:
 ====== andunix-tool ====== ====== andunix-tool ======
  
 +Usage:
 +  java -jar andunix-tool.jar <Global Options> <Command> <Command Options>
 +
 +**Tip:** I suggest to create a shell-script to ease the java starting:
 +
 +<file bash axt>
 +#! /bin/sh
 +
 +# Change this to the directory in which you put ''andunix-tool.jar''
 +# and the corresponding ''lib'' directory
 +ANDUNIX_TOOL_DIR=${HOME}/opt/andunix-tool
 +
 +# Use this to define the path to your Java-Intallation
 +JAVA_HOME=/opt/jdk
 +
 +exec ${JAVA_HOME}/bin/java -jar ${ANDUNIX_TOOL_DIR}/andunix-tool.jar $*
 +</file>
 +
 +Global Options:
 +  -d --debug  Activates the Debug-Level in the output.
 +
 +Commands:
 +  * [[#eyetv|eyetv]]
 +
 +===== EyeTV =====
 +
 +Usage:
 +  axt eyetv <Command Options>
 +
 +Command Options:
 +  -b --pre-rec   Minutes which will be recorded before the programmed start
 +  -a --post-rec  Minutes which will be recorded after the programmed end
 +  -m --max-rec   Number of allowed parallel recordings
 +  -d --dir       Directory containing the ''EyeTV Archive'' directory
 +
 +Example:
 +  axt eyetv -b10 -a15 -m2 -d /Volumes/EyeTV
 +
 +**Tip:** Pipe the output to less which lets you easily scroll though the repotred intersections:
 +
 +  axt eyetv -b10 -a15 -m2 -d /Volumes/EyeTV | less
 +
 +{{tag>java programming eyetv tool opensource}}
p/andunix-tool/index.1359887217.txt.gz · Last modified: 2013-02-03 10:26 by andunix