26 Şubat 2018 Pazartesi

wc komutu

-c seçeneği
Açıklaması şöyle. Kaç byte geçtiğini belirtir. Komutun çıktısını saymak için kullanılabilir.
You can pipe it to wc -c to count the number of bytes that goes through the pipeline.
Alternatif
Bu komut yerine pv -b komutu kullanılabilir. Şöyle yaparız
grep pattern file.txt | pv -b > output.txt
Örnek
Şöyle yaparız.
grep pattern file.txt | wc -c
Örnek
Şöyle yaparız.
mysqldump | wc - c

Hiç yorum yok:

Yorum Gönder