gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 05:14:24 27 4
gpt4 key购买 nike

我一直在努力读取信息并将其存储到 .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

关于linux - 如何在 .dat 文件中存储信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51298326/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com