aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-19 16:09:02 -0700
committerfriendica <info@friendica.com>2014-06-19 16:09:02 -0700
commit00904d49946c4a411225555cb99b5700f6ab51e4 (patch)
treed263d203c2f4b96326d02705db22895ecdb9d562 /util
parent4c0b8bc637fe6773f8053b1672122c18a5788986 (diff)
downloadvolse-hubzilla-00904d49946c4a411225555cb99b5700f6ab51e4.tar.gz
volse-hubzilla-00904d49946c4a411225555cb99b5700f6ab51e4.tar.bz2
volse-hubzilla-00904d49946c4a411225555cb99b5700f6ab51e4.zip
cleanup
Diffstat (limited to 'util')
-rwxr-xr-xutil/shredder/shredder17
1 files changed, 1 insertions, 16 deletions
diff --git a/util/shredder/shredder b/util/shredder/shredder
index c46dfe0ec..5073d5b2f 100755
--- a/util/shredder/shredder
+++ b/util/shredder/shredder
@@ -116,8 +116,6 @@ load_config () {
if [ $THISDIR == '' ]; then THISDIR=. ; fi
PATH=$THISDIR:$PATH
-
-
# Source ShredOAuth.sh
OAuth_sh=$(which ShredOAuth.sh)
(( $? != 0 )) && echo 'Unable to locate ShredOAuth.sh! Make sure it is in searching PATH.' && exit 1
@@ -160,7 +158,7 @@ main () {
JS_Fields=()
fcli_opts=
- while getopts "C:c:s:r:f:i:q:h" name
+ while getopts "C:c:s:r:f:q:h" name
do
case $name in
c) fcli_command="$OPTARG";;
@@ -170,7 +168,6 @@ main () {
f) fcli_file="$OPTARG";;
h) fcli_help_flag="1";;
q) fcli_opts=("${fcli_opts[@]}" "$OPTARG");;
- i) JS_Fields=("${JS_Fields[@]}" "$OPTARG");;
?) usage
exit 2;;
esac
@@ -222,18 +219,6 @@ main () {
echo $FO_ret
-# JS_Parsed=$(echo "$FO_ret" | tokenize | parse)
-
-# for a in ${JS_Parsed[@]}; do
-
-# if [ ${#JS_Fields[@]} != 0 ]; then
-# for b in ${JS_Fields[@]}; do
-# echo "$JS_Parsed" | js ${a} ${b}
-# done
-# else
-# echo "$JS_Parsed"
-# fi
-# done
return $FO_rval
;;