Is there a line length limit for text files created from Perl?

前端 未结 7 1347
栀梦
栀梦 2021-01-12 08:12

While writing a Perl script, I got a requirement to write the user names with comma separation in only one line of the file.

That\'s why I would like to know is ther

7条回答
  •  感情败类
    2021-01-12 08:27

    On some old Unix systems, some text utilities (e.g. join, sort and even some old awk) have a limit on the maximum line size. I think this is the limit of utilities but not the OS. GNU utilities do not have such a limit as far as I know and therefore Linux never has this problem.

提交回复
热议问题