如何在C shell中打开包含单个数字的文件

发布于 2024-08-29 15:12:07 字数 100 浏览 5 评论 0原文

我需要使用 c shell 打开一个文件。该文件包含一个整数,我需要将其放入变量中,增加它并放回文件中。意思是,如果文件包含数字 5,我需要在程序运行后该文件包含数字 6。有什么建议吗?

I need to open a file using c shell. The file contains a single integer, and I need to put it into a variable, increase it and put back into the file. Meaning, if the file contains the number 5, I need, after the program runs, that the file contains the number 6. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

信愁 2024-09-05 15:12:07

您可以使用@命令将其计算为数值表达式。

% echo 100 > test.txt
% set f = `cat test.txt`
% echo $f
100
% @ f = $f + 1
% echo $f
101
% echo $f > test.txt
% cat test.txt
101

You can use the @ command to evaluate it as numeric expression.

% echo 100 > test.txt
% set f = `cat test.txt`
% echo $f
100
% @ f = $f + 1
% echo $f
101
% echo $f > test.txt
% cat test.txt
101
凉城 2024-09-05 15:12:07

或者这样:(

expr `cat /tmp/X` + 1

那些是反引号)。

Or this:

expr `cat /tmp/X` + 1

(those are backquotes).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文