❌

Reading view

There are new articles available, click to refresh the page.

WordCount & Copy

wc filename

wc command calculates a file’s word, line, character, or byte count.

wc -l filename

It displays the count of number of lines.

wc -c filename

It displays count of bytes.

wc -m filename

It displays count of characters


copy command

cp filename1 filename2

to copy filename 1 to filaname2 for backup purpose

❌