If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
Linux में wc
command का use किसी file में words / line व characters count करने के लिए किया जाता है। हालाँकि इसमें और भी options होते हैं जिन्हे आप wc --help
command run करके देख सकते हैं।
$ wc --help
Example के लिए हम एक test
name की file बनाकर उसमे content insert करेंगे , फिर wc command का use करके word count करेंगे
$ toch test $ cat > test hello ! how are you? I hope , you are getting it :) press ctrl+d to save and exit.
Note* Linux में touch command का use file create करने cat command का use file में content write और concatenate करने के लिए किया जाता है।
File content में word count करने के लिए -w option का use किया जाता है।
$ wc -w test 13 test
File में lines print करने के लिए -l
option का use किया जाता है।
$ wc -l test 3 test
characters print करने के लिए -m
option का use किया जाता है।
$ wc -m test 52 test
byte counts, print करने के लिए -c
parameter का use किया जाता है।
$ wc -c test 52 test
Loading ...