bash スクリプトを使用して特定の詳細を表示しようとしていますが、bash スクリプトの出力が端末の出力と異なります。
端末出力:
ubuntu@ubuntu:~/ubin$ cat schedule.text | grep 09/06/12
Sat 09/06/12 Russia 00:15 Czech Republic A
Sat 09/06/12 Netherlands 21:30 Denmark B
ubuntu@ubuntu:~/ubin$
Bash スクリプト出力:
ubuntu@ubuntu:~/ubin$ bash fixture.sh
Sat 09/06/12 Russia 00:15 Czech Republic A Sat 09/06/12 Netherlands 21:30 Denmark B
ubuntu@ubuntu:~/ubin$
ご覧のとおり、bash スクリプトの出力はターミナルの出力とは異なります。私のbashスクリプトの出力には、すべてが1行に含まれています。
フィクスチャ.sh:
A=$(date +%d/%m/%y) #get today's date in dd/mm/yy fmt
fixture=$(cat /home/ubuntu/ubin/schedule.text | grep $A)
echo $fixture
それで、私の質問は、bashスクリプトの出力を端末の出力に似たものにするにはどうすればよいですか?