This file contains hidden or 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
#!/bin/bash | |
startup_path=$1 | |
hardware_id=$2 | |
device_id=$3 | |
status=$4 | |
status2=$5 | |
devname=$6 | |
echo "startup_path=${startup_path}, hardware_id=${hardware_id}, device_id=${device_id}, status=${status}, status2=${status2}, devname=${devname}" |
This file contains hidden or 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
[table border="1" bgcolor="#ffffff" bordercolor="#1185b3" width="100%" cellpadding="4"] | |
[tr][th background="http://tweakers.net/ext/f/86HJGqaHDF9PsBPrRWSTaUOL/full.png"][h1=nostyle]Het Grote 2012/2013 Wintersport topic![/h1][/th][/tr] | |
[tr][th background="http://img.snowplaza.nl/content/enarrablesphotos/1000X174/202329.jpg"][img=1,165]http://upload.wikimedia.org/wikipedia/commons/5/52/Spacer.gif[/img][/th][/tr] | |
[tr][th background="http://tweakers.net/ext/f/86HJGqaHDF9PsBPrRWSTaUOL/full.png"][url=http://gathering.tweakers.net/forum/list_topicrange/860]Het Grote Wintersport topic![/url][/th][/tr] | |
[tr][td]Welkom in Het Grote 2012/2013 Wintersport ervaringen- en discussie-topic! | |
Heb je al jarenlange wintersportervaring, gezellige bestemmingen, goede tips of mooie aanbiedingen en wil je dat graag delen? Of ben je een beginneling en weet je niet wat je kunt verwachten en waar je moet beginnen met zoeken? In dit topic proberen we elkaar te helpen. | |
Ik wens eenieder heel veel plezier in dit Grote Wintersport topic![/ |
This file contains hidden or 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
html { | |
background: #444444; | |
} | |
#layout { | |
background-color: #666; | |
min-width: 90%; | |
} | |
#top { | |
border-bottom: 0; | |
} |
This file contains hidden or 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
#!/bin/bash | |
# Opens a terminal window wherever you are. | |
gnome-terminal --maximize |
This file contains hidden or 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
#!/bin/bash | |
command -v meld >/dev/null 2>&1 || { echo >&2 "I require meld but it's not installed. Aborting."; exit 1; } | |
if [ -n "$3" ] | |
then | |
## Third argument is set | |
meld "$1" "$2" "$3" | |
elif [ -n "$2" ] | |
then | |
## Second argument is set | |
meld "$1" "$2" |