~ubuntu-branches/ubuntu/intrepid/stfl/intrepid

« back to all changes in this revision

Viewing changes to perl5/example.pl

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2007-08-07 13:06:54 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070807130654-fmvsraotulj0nbri
Tags: 0.15-3
Again added fPIC to CFLAGS. Hopefully all build issues
are fixed now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl -w
2
2
#
3
3
#  STFL - The Structured Terminal Forms Language/Library
4
 
#  Copyright (C) 2006  Clifford Wolf <clifford@clifford.at>
5
 
#
6
 
#  This program is free software; you can redistribute it and/or modify
7
 
#  it under the terms of the GNU General Public License as published by
8
 
#  the Free Software Foundation; either version 2 of the License, or
9
 
#  (at your option) any later version.
10
 
#
11
 
#  This program is distributed in the hope that it will be useful,
 
4
#  Copyright (C) 2006, 2007  Clifford Wolf <clifford@clifford.at>
 
5
#
 
6
#  This library is free software; you can redistribute it and/or
 
7
#  modify it under the terms of the GNU Lesser General Public
 
8
#  License as published by the Free Software Foundation; either
 
9
#  version 3 of the License, or (at your option) any later version.
 
10
#  
 
11
#  This library is distributed in the hope that it will be useful,
12
12
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
#  GNU General Public License for more details.
15
 
#
16
 
#  You should have received a copy of the GNU General Public License
17
 
#  along with this program; if not, write to the Free Software
18
 
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
13
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
#  Lesser General Public License for more details.
 
15
#  
 
16
#  You should have received a copy of the GNU Lesser General Public
 
17
#  License along with this library; if not, write to the Free Software
 
18
#  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
19
#  MA 02110-1301 USA
19
20
#
20
21
#  example.pl: A little STFL Perl example
21
22
#
99
100
        my $filename = $files[$1];
100
101
        $filename =~ s/'/'\\''/g;
101
102
        if (system("pidof xmms > /dev/null") != 0) {
102
 
                system("xmms -p '$filename' &");
 
103
                system("xmms -p '$filename' > /dev/null 2>&1 &");
103
104
        } else {
104
 
                system("xmms -e '$filename' &");
 
105
                system("xmms -e '$filename' > /dev/null 2>&1 &");
105
106
        }
106
107
}
107
108