static void terminalInput(string command)
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "/bin/bash";
startInfo.Arguments = "~/test";
Process.Start(startInfo);
}
#!/bin/bash
touch test.txt
echo "hi world! > test.txt"