博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2.14拼写检查与词典操作
阅读量:5268 次
发布时间:2019-06-14

本文共 989 字,大约阅读时间需要 3 分钟。

linux大多数发行版都含有一个词典文件,同时还有一个aspell的工具,其作用是进行拼写检查

1、目录/usr/share/dict/中包含了一些词典文件,“词典文件“就是包含了词典单词列表的文本文件,可以利用这个列表来检查某个单词是否为词典中的单词。

为了检查给定的单词是否属于词典中的单词,用下面的脚本:

#!/bin/bash

#文件名:checkword.sh

word=$1

grep "^$1$" /usr/share/dict/british-english -q

if [ $? -eq 0 ]; then

  echo $word is a dictionary word;

else

  echo $word is not a dictionary word;

fi

这个脚本的语法如下:

./checkword.sh ful

ful is not a dictionary word

./checkword.sh feel

ful is  a dictionary word

工作原理

在grep中,^标记着单词的开始,$标记着单词的结束。

-q禁止产生任何输出

我们也可以利用拼写检查命令aspell来核查某个单词时候再词典中

#!/bin/bash

#文件名:aspellcheck.sh

word=$1

output=`echo \"$word\" | aspell list`

if [ -z $output ];then

  echo $word is a dictionary word;

else

  echo $word is not a dictionary word;

fi

当给定的输入不是一个词典单词时,aspell list命令产生输出文本,反之则不产生任何输出,-z用于确认$output是否为空。

列出文件中以特定单词起头的所有单词:

$look word filepath

或者

$grep "^word" filepath

在默认情况下,如果没有给出文件参数,look命令会使用默认词典(/usr/share/dict/words)并返回输出。

$look word

#像这样使用时,look命令以默认词典作为文件参数

 

转载于:https://www.cnblogs.com/gary-guo/p/6194318.html

你可能感兴趣的文章
mongodb命令----批量更改文档字段名
查看>>
MacOS copy图标shell脚本
查看>>
国外常见互联网盈利创新模式
查看>>
Oracle-05
查看>>
linux grep 搜索查找
查看>>
Not enough free disk space on disk '/boot'(转载)
查看>>
android 签名
查看>>
android:scaleType属性
查看>>
mysql-5.7 innodb 的并行任务调度详解
查看>>
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>
Js时间处理
查看>>
【雷电】源代码分析(二)-- 进入游戏攻击
查看>>
Entityframework:“System.Data.Entity.Internal.AppConfig”的类型初始值设定项引发异常。...
查看>>
Linux中防火墙centos
查看>>
如何设置映射网络驱动器的具体步骤和方法
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
【SVM】libsvm-python
查看>>