shell脚本 - 如何停止"观看" shell脚本中的命令

时间:2016-04-28 06:00:33

标签: shell

是否可以在shell脚本中停止服务,例如" watch"

例如,如果我有以下代码,我希望它无限制地工作。

string str = null;
        str = "CSharp Top11111 10 BOOKS";
        if (str.Contains("top") == true)
        {
            Console.WriteLine("The string Contains() 'TOP' ");
        }
        else
        {
            Console.WriteLine("The String does not Contains() 'TOP'");
        }

代码在关机时间停止,如何停止并执行以下脚本?

0 个答案:

没有答案