dc
Linux Command – dc ใช้ในคำนวณทางคณิตศาสตร์ ลักษณะเหมือน เครื่องคิดเลขตั้งโต๊ะ
คำสั่ง
1. คำนวนสูตรทางคณิตศาสตร์ (+,-,*,/)
หลังจากเข้าสู่ dc prompt การทำงานจะกลับกับที่คุ้นเคยหน่อยคือ ป้อนตัวเลขก่อน และตามด้วย สัญลักษณ์คณิตศาสตร์เช่น บวก, ลบ, คูณ, หาร และตามด้วย “p” เพื่อประมวลผล
$ dc 100 30 / p 3
2. คำนวณผ่านข้อมูลใน file (Batch)
$ cat cal 1 1 + p 1 + p 1 + p $ dc cal 2 3 4
โครงสร้างคำสั่ง
dc [-V] [--version] [-h] [--help]
[-e scriptexpression] [--expression=scriptexpression]
[-f scriptfile] [--file=scriptfile]
[file ...]
รายละเอียด
เป็นคำสั่งที่ใช้ในคำนวณทางคณิตศาสตร์ ลักษณะเหมือน เครื่องคิดเลขตั้งโต๊ะ ที่สามารถบวกลบคูณหาร ต่อจากผลลัพธ์ต่อไปเรื่อยๆ
Option
-V --version Print out the version of dc that is being run and a copyright notice, then exit. -h --help Print a usage message briefly summarizing these command-line options and the bug-reporting address, then exit. -e script --expression=script Add the commands in script to the set of commands to be run while processing the input. -f script-file --file=script-file Add the commands contained in the file script-file to the set of commands to be run while processing the input. If any command-line parameters remain after processing the above, these parameters are interpreted as the names of input files to be processed. A file name of - refers to the standard input stream. The standard input will processed if no script files or expressions are specified.
กลุ่มคำสั่ง
bc,let
Reference:
Author: Suphakit Annoppornchai
Credit: https://saixiii.com