I am looking for a way to launch a terminal session from the command line on Ubuntu, something like this:
#/usr/bin/env bash
terminal -c 'node server.js'
if there is some cross-platform tool that also works on MacOS that'd be nice.
So I tried this:
gnome-terminal -- 'echo "foo" | bash'
and I got this:
And when I try this:
gnome-terminal --tab -- echo 'ts-node /home/oleg/codes/typeaware/doc-gen/lang/typescript/api/src/.test/express.test.ts' | bash
nothing happens, the gnome-terminal never opens.
gnome-terminal -- sh -c 'echo "foo"; bash'
orgnome-terminal -- bash -c 'echo "foo"; bash'
– Terrance Dec 15 '18 at 04:18