2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

1から引数の数までを合計して表示するシェル書いた。

Posted at

現実逃避に1から引数の数までを合計して表示するシェル書いた。

bash
#!/usr/bin/env bash

argv=$1

if [ $1 -lt 1 ] ; then
  echo "0"
  exit 0
fi

param=$((  $argv - 1 ))
ret=$( $0 $param )
echo $(( $argv + $ret))

実行中にCtrl-zしてpsで見ると、こんな感じ。

text
ukaji3   11071 21913  0 22:49 pts/4    00:00:00       bash ./sum.sh 1000
ukaji3   11072 11071  0 22:49 pts/4    00:00:00         bash ./sum.sh 999
ukaji3   11073 11072  0 22:49 pts/4    00:00:00           bash ./sum.sh 998
ukaji3   11074 11073  0 22:49 pts/4    00:00:00             bash ./sum.sh 997
ukaji3   11075 11074  0 22:49 pts/4    00:00:00               bash ./sum.sh 996
ukaji3   11076 11075  0 22:49 pts/4    00:00:00                 bash ./sum.sh 995
ukaji3   11077 11076  0 22:49 pts/4    00:00:00                   bash ./sum.sh 994
(以下略)
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?