File: hspell-gui-heb

package info (click to toggle)
hspell-gui 0.2.6-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 712 kB
  • sloc: sh: 3,111; ansic: 505; makefile: 64
file content (16 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

# script to run hspell-gui with hebrew

# get the first he locale you find
he_locale=`locale -a | grep he | head -n1`

# check for he locale
if [ x"$he_locale" = x ]; then
	echo "sorry no hebrew locale found on your system."
	echo "use locale -a to get a list of your installed locales."
	echo ""
fi

# run the program
LANGUAGE=$he_locale LANG=$he_locale hspell-gui $@