diff --git a/tests/cmdline/repl_basic.py.exp b/tests/cmdline/repl_basic.py.exp
index 1b4a497032efe84c77cc7f5130af8bcec1d824b8..96b8c28dce3bb2711d3be040ec32390d475f416e 100644
--- a/tests/cmdline/repl_basic.py.exp
+++ b/tests/cmdline/repl_basic.py.exp
@@ -1,4 +1,5 @@
 MicroPython \.\+ version
+Use \.\+
 >>> # basic REPL tests
 >>> print(1)
 1
diff --git a/tests/cmdline/repl_cont.py.exp b/tests/cmdline/repl_cont.py.exp
index 47a126643e14d9416ded5919961dbc73dd90c778..74f0f4197f2f9a79f45f15fbf734b96b922c9874 100644
--- a/tests/cmdline/repl_cont.py.exp
+++ b/tests/cmdline/repl_cont.py.exp
@@ -1,4 +1,5 @@
 MicroPython \.\+ version
+Use \.\+
 >>> # check REPL allows to continue input
 >>> 1 \\\\
 ... + 2
diff --git a/tests/cmdline/repl_emacs_keys.py.exp b/tests/cmdline/repl_emacs_keys.py.exp
index 6edaf2813044fcce3843e74a62ffe62eb198c0a5..6102c19639a8a44cf0cb1842c56756752c319c3e 100644
--- a/tests/cmdline/repl_emacs_keys.py.exp
+++ b/tests/cmdline/repl_emacs_keys.py.exp
@@ -1,4 +1,5 @@
 MicroPython \.\+ version
+Use \.\+
 >>> # REPL tests of GNU-ish readline navigation
 >>> # history buffer navigation
 >>> 1
diff --git a/tests/feature_check/repl_emacs_check.py.exp b/tests/feature_check/repl_emacs_check.py.exp
index e456ef3b0ee1cc182071bb086b473277f1a2783b..82a4e28ee4f84650478890588bd1314f7ded1cbc 100644
--- a/tests/feature_check/repl_emacs_check.py.exp
+++ b/tests/feature_check/repl_emacs_check.py.exp
@@ -1,4 +1,5 @@
 MicroPython \.\+ version
+Use \.\+
 >>> # Check for emacs keys in REPL
 >>> t = \.\+
 >>> t == 2
diff --git a/unix/main.c b/unix/main.c
index badbca1a92717ed0cdeeb306ea7220a636b9b6ed..d94544caa58ebbf7c9e1f644850b518e82a16f34 100644
--- a/unix/main.c
+++ b/unix/main.c
@@ -153,7 +153,8 @@ STATIC char *strjoin(const char *s1, int sep_char, const char *s2) {
 #endif
 
 STATIC int do_repl(void) {
-    mp_hal_stdout_tx_str("MicroPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_PY_SYS_PLATFORM " version\n");
+    mp_hal_stdout_tx_str("MicroPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; "
+        MICROPY_PY_SYS_PLATFORM " version\nUse CTRL-D to exit, CTRL-E for paste mode\n");
 
     #if MICROPY_USE_READLINE == 1