Quelle est la ligne de commande pour exécuter une application console avec un argument d'entrée alimenté par un fichier texte?
text_file:
This is a simple text file with characters and other
symbols including tabs and new lines
La console devrait recevoir
$./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 utilisez des guillemets doubles pour transmettre tout le texte en un seul argument
./myapp "$(cat text_file)"
./myapp "`cat text_file`"