File: test2.sh

package info (click to toggle)
rust-cdb 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 248 kB
  • sloc: makefile: 10; sh: 9
file content (9 lines) | stat: -rw-r--r-- 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
for i in $( seq 1000 )
do
	key=$(( $i * 3141592654 % 1000000 ))
	val=$(( $i * 2718281828459045 ))
	echo "+${#key},${#val}:${key}->${val}"
	echo "+3,${#i}:one->${i}"
done
echo "+3,7:two->Goodbye"
echo