X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgio-tool.c;h=ff82c638e0bd805838b7c4e0b4d0a73176a1ca05;hb=171ab2d5613fb4a84f9c599300f4ddbdd5dc18f7;hp=c0aec74925fab2e59041a91a2f00f6ee3d42c47b;hpb=c56d78b101fcc361d6cd5467c59aed4ec78c44af;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gio-tool.c b/gio/gio-tool.c index c0aec74..ff82c63 100644 --- a/gio/gio-tool.c +++ b/gio/gio-tool.c @@ -229,6 +229,7 @@ usage (void) g_printerr (" cat %s\n", _("Concatenate files to standard output")); g_printerr (" copy %s\n", _("Copy one or more files")); g_printerr (" info %s\n", _("Show information about locations")); + g_printerr (" launch %s\n", _("Launch an application from a desktop file")); g_printerr (" list %s\n", _("List the contents of locations")); g_printerr (" mime %s\n", _("Get or set the handler for a mimetype")); g_printerr (" mkdir %s\n", _("Create directories")); @@ -312,6 +313,8 @@ main (int argc, char **argv) return handle_copy (argc, argv, do_help); else if (g_str_equal (command, "info")) return handle_info (argc, argv, do_help); + else if (g_str_equal (command, "launch")) + return handle_launch (argc, argv, do_help); else if (g_str_equal (command, "list")) return handle_list (argc, argv, do_help); else if (g_str_equal (command, "mime"))