#!/usr/bin/bash
# gksu-polkit can not parse commands between quotes.
# But caja-gksu extension sends command in quotes.
# This little script strippes quotes from received command.
command="${*//\'}"
gksu-polkit $command
