テキストファイルから入力引数を指定してコンソールアプリケーションを実行するコマンドラインとは何ですか?
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"
./myapp `cat text_file`
または
./myapp $(cat text_file)
または、二重引用符を使用して、すべてのテキストを単一の引数として渡します
./myapp "$(cat text_file)"
./myapp "`cat text_file`"