From bcf0ff05f6140a0691967b3759304bcaae12353e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Chapoton?= Date: Mon, 14 May 2018 18:47:41 +0200 Subject: [PATCH] ipython simple prompt option --- src/bin/sage | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/sage b/src/bin/sage index 397f30cbed6..bc6ac2ae435 100755 --- a/src/bin/sage +++ b/src/bin/sage @@ -66,7 +66,7 @@ usage_advanced() { echo " -preparse -- preparse file.sage and produce corresponding file.sage.py" echo " -q -- quiet; start with no banner" echo " -root -- print the Sage root directory" - echo " -gthread, -qthread, -q4thread, -wthread, -pylab" + echo " -gthread, -qthread, -q4thread, -wthread, -pylab, --simple-prompt" echo " -- pass the option through to ipython" echo " -v, -version -- display Sage version information" echo " -dumpversion -- print Sage version" @@ -1043,7 +1043,7 @@ if [ "$1" = '-startuptime' -o "$1" = '--startuptime' ]; then exec sage-startuptime.py "$@" fi -if [ "$1" = '-gthread' -o "$1" = '-qthread' -o "$1" = '-q4thread' -o "$1" = '-wthread' -o "$1" = '-pylab' ]; then +if [ "$1" = '-gthread' -o "$1" = '-qthread' -o "$1" = '-q4thread' -o "$1" = '-wthread' -o "$1" = '-pylab' -o "$1" = '--simple-prompt']; then # Intentionally no "shift" here interactive_sage "$@" fi