/usr/bin/hm-sync is in libnet-hiveminder-perl 0.08-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env perl
use strict;
use warnings;
use Net::Hiveminder;
my $file = shift
or die "Usage: $0 file";
my $hm = Net::Hiveminder->new(use_config => 1);
# update any tasks with the changes you've made
print $hm->upload_file($file), "\n"
if -e $file;
# and sync your file with any other changes made
$hm->download_file($file);
|