home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 March / PCWELT_3_2006.ISO / base / 05_common.mo / usr / bin / pspell-config < prev    next >
Encoding:
Text File  |  2005-06-12  |  365 b   |  20 lines

  1. #!/bin/sh
  2.  
  3. # This script is provided for backward compatibility with programs
  4. # that use pspell.  Do not use as it will eventually go away.
  5.  
  6. case $1 in
  7. --version | version)
  8.   echo 0.60.2
  9.   ;;
  10. --datadir | datadir)
  11.   echo "/usr/share"
  12.   ;;
  13. --pkgdatadir | pkgdatadir)
  14.   echo "/usr/lib/aspell"
  15.   ;;
  16. *)
  17.   echo "usage: pspell-config version|datadir|pkgdatadir"
  18.   ;;
  19. esac
  20.