克什+打印与参数相同的格式

发布于 2024-09-15 09:13:19 字数 495 浏览 2 评论 0原文

以下脚本打印 $line 参数 我的目标是完全按照他们的描述打印 $line 中的数字 如以下

示例1

   12435345645645645
   6564564564565
   655656565

但是脚本打印如下

12435345645645645 6564564564565 655656565

需要在脚本中进行哪些更改才能获得示例1的打印(无需更改 $line 参数)

scrip.ksh

 #!/bin/ksh


 line=' 12435345645645645
        6564564564565
        655656565'

print $line

./script.ksh

 12435345645645645 6564564564565 655656565

the following script print the $line parameter
my target is to print the numbers in the $line exactly as they described
as the following

example1

   12435345645645645
   6564564564565
   655656565

But the script print like that

12435345645645645 6564564564565 655656565

What need to change in the script in order to get the print as example1 (without to change $line parameter)

the scrip.ksh

 #!/bin/ksh


 line=' 12435345645645645
        6564564564565
        655656565'

print $line

./script.ksh

 12435345645645645 6564564564565 655656565

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疯狂的代价 2024-09-22 09:13:19

在变量周围加上引号以保留换行符:

print "$line"

Put quotes around the variable to preserve the newlines:

print "$line"
因为看清所以看轻 2024-09-22 09:13:19

需要在行尾添加“\n”

need to add "\n" on the end of the line

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文