web-dev-qa-db-ja.com

テキストファイルの内容を引数としてコンソールアプリケーションに渡す方法は?

テキストファイルから入力引数を指定してコンソールアプリケーションを実行するコマンドラインとは何ですか?

text_file:
This is a simple text file with characters and other
symbols including tabs and new lines

コンソールは取得する必要があります

$./myapp "This is a simple text file with characters and other symbols including tabs and new lines"
6
Chesnokov Yuriy
./myapp `cat text_file`

または

./myapp $(cat text_file)

または、二重引用符を使用して、すべてのテキストを単一の引数として渡します

./myapp "$(cat text_file)"
./myapp "`cat text_file`"
11
Eric Carvalho

とても簡単です。

cat file | some_script.sh

詳細は here をご覧ください。

2
coteyr