./myapp 'cat text_file'
Ou
./myapp $(cat text_file)
Ou use aspas duplas para passar todo o texto como um único argumento
./myapp "$(cat text_file)"
./myapp "'cat text_file'"
Qual é a linha de comando para executar um aplicativo de console com argumento de entrada alimentado a partir de um arquivo de texto?
text_file:
This is a simple text file with characters and other
symbols including tabs and new lines
O console deve ficar
$./myapp "This is a simple text file with characters and other symbols including tabs and new lines"
./myapp 'cat text_file'
Ou
./myapp $(cat text_file)
Ou use aspas duplas para passar todo o texto como um único argumento
./myapp "$(cat text_file)"
./myapp "'cat text_file'"
Tags command-line console files