Subversion Repositories stackman

Compare Revisions

Regard whitespace Rev 4 → Rev 5

/trunk/SSH/stam
19,8 → 19,8
 
# Read in the system identifier
if [ $IS_BATCHMODE -eq 0 ]; then
echo "Terminal Stackman 2.4"
echo "(C) 2013-2019 ViaThinkSoft"
echo "Terminal Stackman 2.4.1"
echo "(C) 2013-2020 ViaThinkSoft"
echo ""
 
if [ -f ~/".autorun" ]; then
90,6 → 90,11
break
fi
 
# No empty lines
if [[ "$inp" == "" ]]; then
continue
fi
 
# Log to journal
echo "$inp" >> ~/.stam_history
if [ -f ~/.stam_history_mir ]; then
293,11 → 298,6
else
# (Blind) appender mode
 
# Keine leeren Zeilen (ist das OK?)
if [[ "$inp" == "" ]]; then
continue
fi
 
# Add single entry (aps)
OUT=$( "$DIR"/aps "$CURCAT" "$inp" )
EC=$?
/trunk/SSH/stam_entries.sql
Cannot display: file marked as a binary type.
svn:mime-type = application/x-sql
/trunk/SSH/stam_weblog.sql
1,6 → 1,6
CREATE TABLE `stam_weblog` (
`id` int(21) NOT NULL AUTO_INCREMENT,
`ts` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`inp` varchar(1024) NOT NULL,
`inp` varchar(32000) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/trunk/SSH/weblog_add
52,7 → 52,7
exit(1);
}
 
echo green("Weblog written <$id> <$ent>!\n");
echo green("Weblog written\n");
}
 
# ---
/trunk/SSH/weblog_rewrite
55,7 → 55,7
exit(1);
}
 
echo green("Weblog written <$id> <$ent>!\n");
echo green("Weblog written!\n");
}
}