Help for this page

Select Code to Download


  1. or download this
    get '/np' => sub {
      return `mpd | head -n1`;
    }
    
  2. or download this
    get '/np' => sub {
       Dancer::Response->new(
    ...
         content => `mpd | head -n1`,
       );
    }