テキストファイルに新しい行を追加し、現在の日付と時刻を追加する方法は?
ベストアンサー1
echo "text" >> file
date >> file
一行だけ立てたい場合
echo -n "text" >> file
date >> file
テキストファイルに新しい行を追加し、現在の日付と時刻を追加する方法は?
echo "text" >> file
date >> file
一行だけ立てたい場合
echo -n "text" >> file
date >> file