sh Bash:比较文字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Bash:比较文字相关的知识,希望对你有一定的参考价值。

#!/bin/bash

echo "Enter text:"
read text1
echo "Enter more text:"
read text2

if test $text1 != $text2; then
  echo "they are not identical"
else
  echo "they are identical"
fi

exit 0

以上是关于sh Bash:比较文字的主要内容,如果未能解决你的问题,请参考以下文章

sh Bash字符串比较

bash、破折号和字符串比较

Shell编程

Linux SHELL中sh和bash的区别

shell脚本首行#!/bin/sh和#!/bin/bash的含义与区别

Shell中bash的特性小结