File: get-SUPPORTED

package info (click to toggle)
localechooser 2.64
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, jessie-kfreebsd-proposed-updates
  • size: 1,608 kB
  • sloc: sh: 1,096; perl: 187; makefile: 71; awk: 42
file content (8 lines) | stat: -rwxr-xr-x 231 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
#!/bin/sh

# Get the SUPPORTED list of locales
set -e

[ -r /usr/share/i18n/SUPPORTED ] || exit 1
rm -rf debian/SUPPORTED-short >/dev/null 2>&1
grep -v '^#' /usr/share/i18n/SUPPORTED | cut -f1 -d ' ' | uniq >debian/SUPPORTED-short