From 2f6b22e4d529fe8a7c938a2622902b3eea63ec03 Mon Sep 17 00:00:00 2001 From: "Louwrentius@gmail.com" Date: Wed, 28 Dec 2011 23:06:09 +0000 Subject: [PATCH] Created wiki page through web user interface. --- wiki/Example_script.wiki | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 wiki/Example_script.wiki diff --git a/wiki/Example_script.wiki b/wiki/Example_script.wiki new file mode 100644 index 0000000..4a990aa --- /dev/null +++ b/wiki/Example_script.wiki @@ -0,0 +1,24 @@ +#summary script showing usage of PPSS variables + +{{{ +#!/usr/bin/env bash + +SRC="$1" +DEST="$2" + + +TYPE=`file -b "$SRC"` +RES=`echo "$TYPE" | grep "WAVE audio"` +if [ ! "$?" == "0" ] +then + echo "File $FILE is not a wav file..." + echo "Type is $TYPE" + exit 0 +fi + +BASENAME=`basename "$SRC"` +MP3FILE="`echo ${BASENAME%wav}mp3`" +lame --quiet --preset insane "$SRC" "$DEST/$MP3FILE" +exit "$?" + +}}} \ No newline at end of file