如何将信息存储在 .dat 文件中

How do I store information in a .dat file

我一直在努力读取信息并将其存储到 .dat 文件中,但每次我 运行 我的 bash 脚本似乎 运行 没问题,但 .dat 文件我做的是空的。

这是我的代码:

#!/bin/bash
echo "Please enter student's name:"
read student
echo "$student"
((count = 0))

while read students[$count] ; do
((count++))
done < sorted.dat

我是不是遗漏了什么明显的东西?

也许你必须将学生存储在文件中?

#!/bin/bash
echo "Please enter student's name:"
read student
echo "$student" >> sorted.dat
((count = 0))

while read students[$count] ; do
((count++))
done < sorted.dat

.dat文件就像一个简单的文本文件,你可以用正常的方式读写

echo "Today's date is" date >> stored.dat
date >> stored.dat
cat stored.dat