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

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

After r~~'s answer, I went through and re-checked everything again. I had also installed powershell (pwsh) into linux. It appears I forgot I had launched pwsh inside of a gnome/terminal bash sess...

posted 9mo ago by davisnw‭  ·  edited 9mo ago by davisnw‭

Answer
#2: Post edited by user avatar davisnw‭ · 2026-01-04T04:53:30Z (9 months ago)
  • After [r~~'s answer](https://linux.codidact.com/posts/295237/295240#answer-295240), I went through and re-checked everything again.
  • I had also installed powershell (`pwsh`) into linux. It appears I forgot I had launched `pwsh` inside of a gnome/terminal `bash` session, causing the described behavior of `echo 'cat' \`.
  • `\` is recognized as line continuation in bash.
  • `` ` `` is recognized as line continuation when `pwsh` is a nested session inside of `bash`.
  • After [r~~'s answer](https://linux.codidact.com/posts/295237/295240#answer-295240), I went through and re-checked everything again.
  • I had also installed powershell (`pwsh`) into linux. It appears I forgot I had launched `pwsh` inside of a gnome/terminal `bash` session, causing the described behavior of `echo 'cat' \`.
  • `\` is recognized as line continuation in bash.
  • `` ` `` is recognized as line continuation when `pwsh` is a nested session inside of `bash`.
  • In `bash`, `<ctrl>v<ctrl>j` allows entering a new line without executing the command, and without an explicit line continuation character. (this doesn't work in a nested `pwsh` session inside of `bash`)
#1: Initial revision by user avatar davisnw‭ · 2026-01-04T03:45:24Z (9 months ago)
After [r~~'s answer](https://linux.codidact.com/posts/295237/295240#answer-295240), I went through and re-checked everything again.

I had also installed powershell (`pwsh`) into linux.  It appears I forgot I had launched `pwsh` inside of a gnome/terminal `bash` session, causing the described behavior of `echo 'cat' \`.

`\` is recognized as line continuation in bash.

`` ` `` is recognized as line continuation when `pwsh` is a nested session inside of `bash`.