A backslash test

  • This is a test of the backslash.

     

    This line ends with a backslash

    This python code has some

    /* This has a backslash \ 
    and one below */

    a = 'something' + \
    'something else'

    This is plain

    /* This has a backslash \ 
    and below */

    docker run -d --name "test" \
    -p:1434:1434 mcr.microsoft.com/mssql/server/

    T-sql

    /* This has a backslash \ 
    and below */

    docker run -d --name "test" \
    -p:1434:1434 mcr.microsoft.com/mssql/server/
  • Thanks for posting your issue and hopefully someone will answer soon.

    This is an automated bump to increase visibility of your question.

  • Test line ending with backslash: \

    Test backslash inside code block

    echo \  "here";

     

    Same code out of code block:

    echo \

    "here";

    • This reply was modified 3 years, 2 months ago by  administrator.
  • #!/bin/bash

    echo \

    "here"

    echo -n "here" \

    \ echo -e " \ here"

    /* This has a backslash \

    continued */

    Test backslash inside code block:

    echo \
    "here";

     

    Same code out of code block:

    echo \

    "here";

  • This was removed by the editor as SPAM

  • test reply

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply