web-dev-qa-db-fra.com

Comment passer le contenu du fichier texte en argument à l'application console?

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"
6
Chesnokov Yuriy
./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`"
11
Eric Carvalho

Très simple, chat ça.

cat file | some_script.sh

Regardez ici pour plus d'aide.

2
coteyr