fold
Linux Command – fold ใช้ในการจัดเรียงความยาวตัวอักษรแต่ละบรรทัด
คำสั่ง
ตัวอย่าง file test
$ cat test Copyright © 2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
1. จัดเรียงความยาวตัวอักษรทุกบรรทัด
fold <file>
$ fold test Copyright © 2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL versio n 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
2. กำหนดความยาวตัวอักษรแต่ละบรรทัด
fold -w <number> <file>
$ fold test Copyright © 2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL versio n 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
3. จัดเรียงโดยคำนึงถึง space ด้วย
fold -s <file>
$ fold -s test Copyright © 2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
โครงสร้างคำสั่ง
fold [OPTION]... [FILE]...
รายละเอียด
เป็นคำสั่งที่ใช้ในการจัดเรียงความยาวตัวอักษรแต่ละบรรทัดตามจำนวนตัวออักษร หรือ bytes
Option
Mandatory arguments to long options are mandatory for short options too. -b, --bytes count bytes rather than columns -s, --spaces break at spaces -w, --width=WIDTH use WIDTH columns instead of 80 --help display this help and exit --version output version information and exit
กลุ่มคำสั่ง
–
Reference:
Author: Suphakit Annoppornchai
Credit: https://saixiii.com