Hi,
Running "grep (GNU grep) 3.0" as part of Git for Windows (Git-2.16.2-64-bit.exe)
in bash shell.
It seems like grep isn't matching with a caret (start-of-line) on the first line of a file.
> head <file>
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnitySpeechToText.Utilities;
namespace UnitySpeechToText.Services
{
/// <summary>
/// Base class for streaming speech-to-text SDK.
/// </summary>
> grep "^using" <file>
using System.Collections.Generic;
using UnityEngine;
using UnitySpeechToText.Utilities;
>
grep "using" <file>
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnitySpeechToText.Utilities;
Thanks,
Clay Budin
Principal Engineer - Content
MSG Ventures