/usr/bin/sass2css is in libtext-sass-perl 1.0.4-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 17 18 19 20 21 22 23 24 | #!/usr/bin/env perl
#########
# Author: rmp
# Last Modified: $Date: 2010-10-28 17:09:19 +0100 (Thu, 28 Oct 2010) $
# Id: $Id: sass2css.pl 19 2010-10-28 16:09:19Z zerojinx $
# Source: $Source$
# $HeadURL: https://text-sass.svn.sourceforge.net/svnroot/text-sass/trunk/bin/sass2css.pl $
#
use strict;
use warnings;
use lib qw(lib);
use Text::Sass;
use Carp;
use English qw(-no_match_vars);
our $VERSION = '1.00';
my $sass = Text::Sass->new();
if(!scalar @ARGV) {
local $RS = undef;
my $str = <>;
print $sass->sass2css($str) or croak $ERRNO;
}
|