This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
"""Quick and dirty mp4 file cutting by cue sheet. | |
The cue sheet shall look somewhat like this:: | |
PERFORMER "Calexico & ORF Radio-Symphonieorchester" | |
TITLE "FM4 Radiosession mit Calexico" | |
FILE "mp4_rs_calexico_final_2_q4a_200152.mp4" MP3 | |
TRACK 01 AUDIO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function()%20{var%20protocol%20=%20window.location.protocol%20===%20'file:'%20?'http:'%20:%20'';var%20url%20=%20protocol+'//www.sprymedia.co.uk/VisualEvent/VisualEvent_Loader.js';if(%20typeof%20VisualEvent!='undefined'%20)%20{if%20(%20VisualEvent.instance%20!==%20null%20)%20{VisualEvent.close();}else%20{new%20VisualEvent();}}else%20{var%20n=document.createElement('script');n.setAttribute('language','JavaScript');n.setAttribute('src',url+'?rand='+new%20Date().getTime());document.body.appendChild(n);}})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function chmown { | |
if [ -z "$1" ] | |
then | |
echo "Usage: chmown <rights> <owner> <target>" | |
return 1 | |
fi | |
if [ -z "$2" ] | |
then | |
echo "Usage: chmown <rights> <owner> <target>" | |
return 2 |