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

时间:2010-04-16 13:27:11

标签: file file-io csh

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

2 个答案:

答案 0 :(得分:1)

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

% 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

答案 1 :(得分:0)

或者这个:

expr `cat /tmp/X` + 1

(那些是反引号)。