17 lines
392 B
Plaintext
17 lines
392 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
welcomeURL="\
|
||
|
http://svn.haiku-os.org/haiku/haiku/trunk/docs/welcome/welcome_en.html"
|
||
|
welcomeDir=/boot/system/documentation/welcome/
|
||
|
welcomeFile=$welcomeDir/welcome_en.html
|
||
|
localizedWelcomeFile=$welcomeDir/welcome_"$LANG".html
|
||
|
|
||
|
if [ -f $localizedWelcomeFile ]; then
|
||
|
open file://$localizedWelcomeFile
|
||
|
elif [ -f $welcomeFile ]; then
|
||
|
open $welcomeFile
|
||
|
else
|
||
|
open $welcomeURL
|
||
|
fi
|
||
|
|