0

I'm playing with the bash scripts and I'm wondering how can I use the pipe symbol in title? I tried title "|" but the quotes are in the title too. Is there any other way I can make this?

Thank you!

1 Answers1

0

You can escape the pipe | character with the ^ character:

C:\Windows\System32> title HELLO ^| WORLD

Output:

Output of command "title HELLO ^| WORLD"

Govind Parmar
  • 20,656
  • 7
  • 53
  • 85