aboutsummaryrefslogtreecommitdiffstats
path: root/util/fresh
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-13 15:33:24 -0800
committerfriendica <info@friendica.com>2013-01-13 15:33:24 -0800
commit5ea70892ed2d265d27723dd32a4b898f4ad769c2 (patch)
tree70b23cbd16e6f2f216c9593c836c340dc40ae827 /util/fresh
parentde3b5955c982cb470036991ef15869705faf5595 (diff)
downloadvolse-hubzilla-5ea70892ed2d265d27723dd32a4b898f4ad769c2.tar.gz
volse-hubzilla-5ea70892ed2d265d27723dd32a4b898f4ad769c2.tar.bz2
volse-hubzilla-5ea70892ed2d265d27723dd32a4b898f4ad769c2.zip
fresh: add help|? command
Diffstat (limited to 'util/fresh')
-rwxr-xr-xutil/fresh22
1 files changed, 20 insertions, 2 deletions
diff --git a/util/fresh b/util/fresh
index 0775755b2..7f96a319c 100755
--- a/util/fresh
+++ b/util/fresh
@@ -34,6 +34,7 @@ function fresh_main($argc,$argv) {
$line = trim($line);
if($line == 'quit' || $line == 'exit')
exit();
+
process_command($line);
}
@@ -60,6 +61,11 @@ function process_command($line) {
}
switch(argv(0)) {
+ case '?':
+ case 'help':
+ fresh_help();
+ break;
+
case 'finger':
if(argv(1)) {
$x = zot_finger(argv(1),$channel);
@@ -120,11 +126,11 @@ function process_command($line) {
intval(argv($x)),
intval(local_user())
);
- if($r) echo jindent(json_encode($r[0]));
+ if($r) echo jindent(json_encode($r[0])) . "\n";
}
}
else {
- $r = q("select * from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d",
+ $r = q("select * from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d order by abook_id",
intval(local_user())
);
if($r) {
@@ -143,3 +149,15 @@ function process_command($line) {
}
+function fresh_help() {
+
+ if(argc() == 1) {
+ echo "help - this text\n";
+ echo "login email_address - login with email_address, prompts for password\n";
+ echo "finger channel_address - lookup channel_address remotely\n";
+ echo "channel new_channel - change active channel to new_channel (nickname)\n";
+ echo "conn [id1] [id2...] - without args list connections, or report detail of connection id1 (etc.)\n";
+ echo "quit|exit - terminate fresh\n";
+
+ }
+} \ No newline at end of file