On 4/14/19 3:24 AM, Ivan "Rambius" Ivanov wrote:
> Hello,
> 
> The st terminal has -e option that executes a specific command instead
> of the shell. However, st closes immediately after the command has
> completed. Is it possible to hold the st's window after the command
> has finished? That is similar to xterm's -hold command.

You can throw the following script ("hold.sh") into your $PATH:

#!/bin/sh
$@
read x

Then run, for example, "st -e hold.sh ls"

Reply via email to