pr Linux Command – pr ใช้ในการแสดงข้อมูลภายใน file ในรูปแบบสิ่งพิมพ์ คำสั่ง pr <file1> $ pr file1 2017-05-07 10:23 file1 Page 1 aaaaaaaaaaa bbbbbbbbbbb ccccccccccc ddddddddddd eeeeeeeeeee fffffffffff ggggggggggg <command> |pr $ ls -a | pr -n -h “Files in $(pwd)” 2017-05-09 15:50 Files in /home Page 1 1 . 2 .. 3 .bash_history 4…
pathchk – Linux Command คำสั่งเช็ก path ในระบบว่ามีถูกต้อง
pathchk Linux Command – pathchk ใช้ในการเช็ก path ในระบบว่ามีถูกต้อง คำสั่ง pathchk $ pathchk /tmp สำหรับมาตราฐาน POSIX $ pathchk -p /tmp โครงสร้างคำสั่ง pathchk [OPTION]… NAME… รายละเอียด เป็นคำสั่งที่ใช้ในการเช็ก path ในระบบว่ามีถูกต้อง โดยผลลัพธ์จะออกมาในรูป exit status ซึ่งไม่สามารถเห็นได้บน terminal นิยมใช้ใน shell script Exit status 0 – pathname ถูกต้อง >0 – error Option -p check for most POSIX systems…
paste – Linux Command คำสั่งเชื่อมข้อมูลที่ละบรรทัดจากหลาย file
paste Linux Command – paste ใช้ในการเชื่อมข้อมูลที่ละบรรทัดจากหลาย file คำสั่ง ตัวอย่าง file1, file2 $ cat file1 aaaaaaaaaaa bbbbbbbbbbb ccccccccccc ddddddddddd eeeeeeeeeee fffffffffff ggggggggggg $ cat file2 aaaaaaaaaaa 22222222222 ccccccccccc zzzzzzzzzzz xxxxxxxxxxx 33333333333 ddddddddddd 1. เชื่อมข้อมูลทีละบรรทัดด้วย tab paste <file1> <file2> $ paste file1 file2 aaaaaaaaaaa aaaaaaaaaaa bbbbbbbbbbb 22222222222 ccccccccccc ccccccccccc ddddddddddd zzzzzzzzzzz eeeeeeeeeee xxxxxxxxxxx fffffffffff 33333333333 ggggggggggg…
passwd – Linux Command คำสั่งเปลี่ยน password ของ System user
passwd Linux Command – passwd ใช้ในการเปลี่ยน password ของ System user คำสั่ง 1. เปลี่ยน password ของ user ที่ใช้งาน $ passwd Changing password for saixiii. (current) UNIX password: 2. เปลี่ยน password ของ user อื่นโดยไม่ทราบ password เก่า ต้อง login เป็น root $ sudo passwd staff 3. เปลี่ยน password root โดยไม่ทราบ password เก่า ต้อง boot เข้าสู่…
nohup – Linux Command คำสั่งป้องกันการหยุดของ background process
nohup Linux Command – nohup ใช้ในการป้องกันการหยุดของ background process คำสั่ง nohup <command> & nohup find -size +100k > log.txt & คำสั่งทำการหา (find) file ขนาดมากกว่า 100 Kb และทำการเขียน log ลง file “log.txt” ทำงานเป็น background process (&) จนกว่าจะเสร็จสมบูรณ์ถึงแม้ว่าจะ log off จาก shell (nohup) โครงสร้างคำสั่ง nohup COMMAND [ARG]… nohup OPTION รายละเอียด เป็นคำสั่งที่ใช้ในการป้องกันการหยุดของ background process (&) ซึ่ง…
nl – Linux Command คำสั่งแสดงเลขที่บรรทัดของข้อมูลใน file
nl Linux Command – nl ใช้ในการแสดงเลขที่บรรทัดของข้อมูลใน file คำสั่ง ตัวอย่าง file1 $ cat file1 aaaaaaaaaaa bbbbbbbbbbb ccccccccccc ddddddddddd eeeeeeeeeee fffffffffff ggggggggggg nl <file> $ nl file1 1 aaaaaaaaaaa 2 bbbbbbbbbbb 3 ccccccccccc 4 ddddddddddd 5 eeeeeeeeeee 6 fffffffffff 7 ggggggggggg โครงสร้างคำสั่ง nl [OPTION]… [FILE]… รายละเอียด เป็นคำสั่งที่ใช้ในการแสดงเลขที่บรรทัดของข้อมูลใน file Option Mandatory arguments to long…
nice – Linux Command คำสั่งจัดลำดับความสำคัญของ process
nice Linux Command – nice ใช้ในการจัดลำดับความสำคัญของ process คำสั่ง nice $ nice 0 nice -n<number> <command> $ nice -n13 curl www.google.com <HTML><HEAD><meta http-equiv=”content-type” content=”text/html;charset=utf-8″> <TITLE>302 Moved</TITLE></HEAD><BODY> <H1>302 Moved</H1> The document has moved <A HREF=”http://www.google.co.th/?gws_rd=cr&ei=dUQRWciAKcH1vgTyhrr4AQ”>here</A>. </BODY></HTML> โครงสร้างคำสั่ง nice [OPTION] [COMMAND [ARG]…] รายละเอียด เป็นคำสั่งที่ใช้ในการจัดลำดับความสำคัญของ process ซึ่งค่ายิ่งต่ำ(n) ยิ่งมี priority สูงและจะได้ cpu resource ไป process…
mv – Linux Command คำสั่งย้ายตำแหน่ง file หรือ directory
mv Linux Command – mv ใช้ในการคำสั่งย้ายตำแหน่ง file หรือ directory คำสั่ง 1. ย้ายตำแหน่ง file mv <oldpath> <newpath> $ mv file1 test/. $ ls -ltr test total 4 -rw-r–r– 1 root root 49 May 8 16:14 file1 2. เปลี่ยนชื่อ file mv <oldfile> <newfile> $ ls -ltr total 4 -rw-r–r– 1 root root 49 May 8…
mount – Linux Command คำสั่งติดตั้งใช้งานอุปกรณ์ที่เชื่อมต่อ
mount Linux Command – mount ใช้ในการติดตั้งใช้งานอุปกรณ์ที่เชื่อมต่อ คำสั่ง 1. แสดง mount list $ mount sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) udev on /dev type devtmpfs (rw,nosuid,relatime,size=1964668k,nr_inodes=491167,mode=755) devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=396944k,mode=755) /dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered) 2. การ mount อุปกรณ์…
more – Linux Command คำสั่งอ่านข้อมูลและค้นหาข้อมูลใน file
more Linux Command – more ใช้ในการอ่านข้อมูลและค้นหาข้อมูลใน file คำสั่ง 1. แสดงข้อมูลภายใน file more <file> $ more file1 ant,10 bat,11 cat,12 dog,13 boy,14 man,23 rat,21 2. แสดงข้อมูลโดยเริ่มจากบรรทัดที่ระบุ more +<line number> <file> $ more +3 file1 cat,12 dog,13 boy,14 man,23 rat,21 3. แสดงข้อมูลลัพธ์จากคำสั่งในหน้าแรก <command> | more ls |more file1 file2 test โครงสร้างคำสั่ง more [options] file……