mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-04 22:30:42 +00:00
74f2b97322
Fix PR#50 while maintaining backward compatibility: when new environment variable $KEEPQUOTE is set, use the command line's original single and double quotes unchanged (rather than removing all quotes and adding double quotes as needed). Fix PR#123: do not ignore command line characters following a ";" that was not preceeded by a command. Add signal handler for SIGTTIN (background read attempted from control terminal) that prints a message and quits the shell. This is needed because gsh will sometimes receive such a signal, go into the "suspended" state, and never return to "running" state. Add environment variable $ECHOX to print expanded commands before they are executed.
36 lines
621 B
Plaintext
36 lines
621 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: gsh.rez,v 1.13 1999/11/30 17:53:27 tribby Exp $
|
|
*/
|
|
|
|
#define PROG "gsh"
|
|
#define DESC "GNO/Shell\n"
|
|
|
|
#include "Types.rez"
|
|
#include "builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 2, 0, 0, /* Version 2.0.0 */
|
|
alpha, /* development|alpha|beta|final|release */
|
|
1 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC
|
|
BUILD_DATE
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v2.0\n"
|
|
DESC
|
|
"Written by Tim Meekins. Updated by Dave Tribby\n"
|
|
BUILD_DATE
|
|
};
|