Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cシェルを使用してファイルを開く必要があります。ファイルには単一の整数が含まれているので、それを変数に入れて増やし、ファイルに戻す必要があります。つまり、ファイルに番号5が含まれている場合、プログラムの実行後に、ファイルに番号6が含まれている必要があります。何か提案はありますか?
このコマンドを使用して、@数式として評価できます。
@
% 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
またはこれ:
expr `cat /tmp/X` + 1
(これらはバッククォートです)。