cat arquivo.txt
cat arquivo1.txt arquivo2.txt
cat > novo_arquivo.txt
cat >> arquivo_existente.txt
cat -n arquivo.txt
cat arquivo1.txt arquivo2.txt > combinado.txt
cat arquivo.bin
cat -T arquivo.txt
cat <(ls) <(echo "Texto adicional") > resultado.txt
cat arquivo1.txt arquivo2.txt | less
mkfifo mypipe; cat mypipe &
cat -n arquivo1.txt arquivo2.txt > combinado_numerado.txt
cat arquivo1.txt arquivo2.txt | grep -v '^$' > combinado_sem_linhas_em_branco.txt
cat arquivo.txt | tee >(wc -c)
cat arquivo1.txt arquivo2.txt | tee arquivo3.txt | tee arquivo4.txt
cat /dev/zero > imagem_disco.bin
cat arquivo1.txt arquivo2.txt | gzip > arquivos_combinados.gz
sudo cat /arquivo/restrito.txt
cat cabeçalho.img bloco1.img bloco2.img > disco.img
tail -f /var/log/syslog /var/log/auth.log | cat -n
cat arquivo.iso > /dev/sdb
cat arquivo1.txt arquivo2.txt | tee combinado.txt | sha256sum