
ឥរិយាបថលំនាំដើមសម្រាប់ពាក្យបញ្ជាជាទូទៅអាចនឹងត្រូវបានកែប្រែដោយការបន្ថែម --option ទៅកាន់ពាក្យបញ្ជា ។ ឧទាហរណ៍ ពាក្យបញ្ជា ls មានជម្រើស -s ។ ls -s នឹងរួមបញ្ចូលទំហំឯកសារនៅក្នុងការរាយបញ្ជី ។ ក៏មានជម្រើស -h ផងដែរ សម្រាប់បង្ហាញទំហំឯកសារជាទ្រង់ទ្រាយ “human readable” ។
Options can be grouped in clusters, so
ls -sh
is the same command as
ls -s -h
Most options have a long version, prefixed with two dashes instead of one, so
ls --size --human-readable
is also the same command as
ls -sh