6 Einträge, 1 Seite |
1
2
3
4
5
#!/bin/bash
echo Content-type: text/plain
echo
echo QUERY_STRING: $QUERY_STRING
echo PATH_INFO: $PATH_INFO
1
2
3
4
5
6
#!/bin/bash
echo Content-type: text/plain
echo
echo CONTENT_LENGTH: $CONTENT_LENGTH
read -n $CONTENT_LENGTH INPUT
echo $INPUT
1
2
echo -e 'Content-Type: text/plain\n'
/usr/sbin/lsof -p `ps aux | awk '/mplayer/ {if( ! /awk/ ) {print $2}}' | tr '\n' ','`|egrep -i 'mp3$|ogg$'|sed 's%[^/]*%%'|tr '\n' '\0'|xargs -0 -n1 sh -c 'echo "$0"; mp3info -f "%a - %t%NGenre: %g%N" "$0" 2>/dev/null'
6 Einträge, 1 Seite |