デバッガーが出力する繰り返される同一要素の現在のしきい値を表示します。
次の例は、show print repeats コマンドが文字列と配列でどのように役立つかを示しています。
(idb) show print repeats Threshold for repeated print elements is 10. (idb) print a $12 = "1122222333" (idb) set print rep 2 (idb) show print repeats Threshold for repeated print elements is 2. (idb) print a $13 = "11", '2' <repeats 5 times>, '3' <repeats 3 times> (idb) set print repeats 3 (idb) show print repeats Threshold for repeated print elements is 3. (idb) print a $14 = "11", '2' <repeats 5 times>, "333" (idb)