fmt Linux Command – fmt ใช้ในการจัดเรียงข้อมูลภายใน file ในรูป format ให้อ่านได้ง่าย คำสั่ง ตัวอย่าง 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…
find – Linux Command คำสั่งใช้ในการค้นหา file หรือ directory
find Linux Command – find ใช้ในการค้นหา file หรือ directory ด้วยเงือนไขต่างๆ เช่น ชื่อ, ขนาด, เวลา คำสั่ง 1. ค้นหาด้วยชื่อ file find -name <name> find -name “query” ไม่สนใจตัวเล็ก ตัวใหญ่ (case sensitive) find -iname “query” หา file ทั้งหมดแบบยกเว้น find -not -name “query_to_avoid” find \! -name “query_to_avoid” 2. ค้นหาตามชนิด file find -type <type> find -type type_descriptor query ชนิดของ…
fdisk – Linux Command คำสั่งบริหารจัดการ disk partition
fdisk Linux Command – fdisk ใช้ในการบริหารจัดการ disk partition คำสั่ง 1. แสดงข้อมูล disk partition ของ linux $ fdisk -l Disk /dev/sda: 74.5 GiB, 80000000000 bytes, 156250000 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk…
factor – Linux Command คำสั่งแยกตัวประกอบทางคณิตศาสตร์
factor Linux Command – factor ใช้ในการแยกตัวประกอบทางคณิตศาสตร์ คำสั่ง $ factor 12345 12345: 3 5 823 $ factor 51 51: 3 17 $ factor 200 200: 2 2 2 5 5 $ factor 1234445 1234445: 5 246889 $ factor 3 3: 3 $ factor 93 93: 3 31 $ factor 71 71: 71 โครงสร้างคำสั่ง factor…
expr – Linux Command คำสั่งที่ใช้ประมวลผลตรรกะคณิตศาสตร์
expr Linux Command – expr ใช้ประมวลผลตรรกะคณิตศาสตร์ คำสั่ง 1. Boolean expression $ expr 3 = 3 1 $ expr 3 \> 3 0 2. Mathematic expression $ expr 20 + 23 43 $ expr 20 – 23 -3 $ expr 20 \* 23 460 $ expr 20 / 23 0 โครงสร้างคำสั่ง expr…
expand – Linux Command คำสั่งเปลี่ยนข้อมูล file จาก tab เป็น space
expand Linux Command – expand ใช้ในเปลี่ยนข้อมูล file จาก tab เป็น space คำสั่ง expand –tabs=<number> <file> $ cat test 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 $ expand –tabs=1 test 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3…
env – Linux Command คำสั่งสร้าง environment ในการ run program
env Linux Command – env ใช้ในการสร้าง environment ในการ run program เช่นค่าตัวแปร PATH, Shell, Language คำสั่ง 1. แสดงค่า environment ปัจจุบัน $ env XDG_SESSION_ID=346 TERM=vt100 SHELL=/bin/bash DERBY_HOME=/usr/lib/jvm/java-8-oracle/db SSH_CLIENT=xxxxxxxx SSH_TTY=/dev/pts/1 USER=root JAVA_HOME=/usr/lib/jvm/java-8-oracle EDITOR=vi LANG=en_US.UTF-8 SHLVL=1 VISUAL=vi J2SDKDIR=/usr/lib/jvm/java-8-oracle SSH_CONNECTION=134.196.90.62 49423 192.168.1.200 22 LESSOPEN=| /usr/bin/lesspipe %s XDG_RUNTIME_DIR=/run/user/1000 J2REDIR=/usr/lib/jvm/java-8-oracle/jre LESSCLOSE=/usr/bin/lesspipe %s %s _=/usr/bin/env LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: 2. run program ด้วย environment ที่ตั้งไว้…
egrep – Linux Command คำสั่งค้นหาบรรทัดใน file ที่ตรงเงื่อนไข
egrep Linux Command – egrep ใช้ในการค้นหาบรรทัดใน file ที่ตรงเงื่อนไข คำสั่ง จากตัวอย่าง file test1 $ cat test1 Ant Bee Cat Dog Fly 1. ค้นหาบรรทัดที่มี text ตรงเงือนไข egrep <text> <file> $ egrep a test1 Cat Man $ egrep an test1 Man 2. ค้นหาบรรทัดที่มี text ใน list เงื่อนไข (|) egrep “<text|text>” <file> $ egrep “a|o” test1 Cat…
ed – Linux Command คำสั่ง editor file ชนิดหนึ่ง
ed Linux Command – ed ใช้เป็น editor file ชนิดหนึ่งแต่ไม่ได้รับความนิยมแล้วค่อนข้างใช้งานยาก คำสั่ง ed <file> $ ls -ltr total 4 -rw-r–r– 1 root root 14 May 7 23:46 test1 $ sudo ed test1 14 w test2 14 q $ ls -ltr total 8 -rw-r–r– 1 root root 14 May 7 23:46 test1 -rw-r–r– 1 root root 14 May…
echo – Linux Command คำสั่งในการแสดงผลบนหน้าจอ screen
echo Linux Command – echo ใช้ในการแสดงผลบนหน้าจอ screen terminal ในลักษณะ text คำสั่ง 1. แสดงผล text บนหน้าจอ echo ‘<text>’ $ echo ‘test’ test 2. แสดงผลตัวอักษรพิเศษ echo -e ‘<text>’ $ echo -e ‘test\ntest’ test test $ echo -e ‘test\ttest’ test test โครงสร้างคำสั่ง echo [SHORT-OPTION]… [STRING]… echo LONG-OPTION รายละเอียด เป็นคำสั่งที่ใช้ในการแสดงผลบนหน้าจอ screen terminal ในลักษณะ text สามารถแสดงผลแบบพิเศษด้วย option…