From 793eea29823a44fd4950f87898ecf0ff3b49351d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 25 Aug 2018 13:25:39 +0200 Subject: Add improved CLI interface for removing remote media (#8411) ./bin/tootctl media remove --days 7 --background Make the old rake task point to it --- bin/tootctl | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 bin/tootctl (limited to 'bin') diff --git a/bin/tootctl b/bin/tootctl new file mode 100755 index 000000000..2fe02523a --- /dev/null +++ b/bin/tootctl @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../lib/cli' +Mastodon::CLI.start(ARGV) -- cgit