PowerShell、CMD、Linux 命令换行
Linux cmd PowerShell About 320 words场景
运行docker命令,该命令由多行组成。在Linux中使用\表示换行。
docker run \
--name nginx \
-p 80:80 \
nginxPowerShell
PowerShell中使用反引号表示换行。
echo hello `
world `
123输出
PS C:\> echo hello `
>> world `
>> 123
hello
world
123CMD
CMD中使用^表示换行。
echo hello ^
world ^
123输出
C:\>echo hello ^
More? world ^
More? 123
hello world 123
                Views: 4,420 · Posted: 2023-03-10
            
            ————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb/LiteNote扫描下方二维码关注公众号和小程序↓↓↓
 
        Loading...