码迷,mamicode.com
首页 > 其他好文 > 详细

shell 检查一个单词是否在字典中

时间:2014-07-30 17:10:13      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:blog   文件   io   cti   ar   div   linux   log   

#!/bin/bash
#文件名:checkword.sh
word=$1
grep "^$1$" /usr/share/dict/linux.words -q
if [ $? -eq 0 ];
then
echo $word is a dictionary word;
else
echo $word is not a dictionary word;
fi

 

shell 检查一个单词是否在字典中,布布扣,bubuko.com

shell 检查一个单词是否在字典中

标签:blog   文件   io   cti   ar   div   linux   log   

原文地址:http://www.cnblogs.com/csxf/p/3878385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!