if { [string equal [exec grep -o {hello} /root/file] "hello"] } {
puts "Yay, it worked!"
}
此例的grep用的option -o是只显示一行中匹配的部分,所以可以和string equal同用
if { [string equal [exec grep -o {hello} /root/file] "hello"] } {
puts "Yay, it worked!"
}
此例的grep用的option -o是只显示一行中匹配的部分,所以可以和string equal同用