linux command

tac

Linux Command – tac ใช้ในการแสดงข้อมูลใน file แบบกลับหลัง

 

คำสั่ง

จากตัวอย่าง file

$ cat file
1
2
3
4
5
6
7
8
9

 

tac <file>

$ tac file
9
8
7
6
5
4
3
2
1

 

โครงสร้างคำสั่ง

 tac [OPTION]... [FILE]...

 

รายละเอียด

เป็นคำสั่งที่ใช้ในการแสดงข้อมูลใน file แบบกลับหลัง

 

Option

 Mandatory arguments to long options are mandatory for short options too.

 -b, --before
 attach the separator before instead of after

 -r, --regex
 interpret the separator as a regular expression

 -s, --separator=STRING
 use STRING as the separator instead of newline

 --help display this help and exit

 --version
 output version information and exit

 

กลุ่มคำสั่ง

cat, tail

 

Reference:

คำสั่ง Unix – Linux Command

Linux, Unix

 

Author: Suphakit Annoppornchai

Credit: https://saixiii.com

Leave a Reply