冪等性
ある操作を複数回行っても、結果が同じになる性質。
例えば、
code:shell_01
cat <<'EOF'> ./example.txt
Hello, world!
EOF
これは、何度繰り返しても結果が同じなので、冪等性がある。
code:shell_02
cat <<'EOF'>> ./example.txt
Hello, world!
EOF
これは、繰り返すごとに「Hello, world!」が追記されていくので、冪等性がない。