Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

70%
+5 −1
Q&A How to enter a blank line in a terminal without executing the command

How can I enter a new blank line in gnome-terminal / bash without executing the command? I'm currently using Linux Mint 22.2. I've dabbled with Linux on many previous occasions, but am now trying ...

2 answers  ·  posted 9mo ago by davisnw‭  ·  last activity 9mo ago by davisnw‭

Question terminal gnome-terminal
#1: Initial revision by user avatar davisnw‭ · 2026-01-03T15:18:07Z (9 months ago)
How to enter a blank line in a terminal without executing the command
How can I enter a new blank line in `gnome-terminal` / `bash` without executing the command?

I'm currently using Linux Mint 22.2. I've dabbled with Linux on many previous occasions, but am now trying to use it as my primary OS. I've been a heavy user of the command line in Windows. On Windows powershell (*not* using the newer Windows Terminal), I've gotten used to experimenting with scripts on the command line, and found it useful to be able to add new lines using `<shift><enter>`.

However, I cannot figure how to do the equivalent in `gnome-terminal` / `bash`.

I've installed `dconf-editor` and searched through settings it exposes, but haven't found anything that would affect the behavior of enter.

I've also tried using `\` to escape the newline, but that also immediately executes, e.g. `echo 'cat' \` just immediately prints
```
cat
\
```

I'm not sure whether the behavior of `<enter>` is a function of the emulator (gnome-terminal) or the shell (bash) or some combination of both.