🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 04:45:58 | PHP 8.1.34
📂
/ (Root)
/
usr
/
share
/
awk
📍 /usr/share/awk
🔄 Refresh
✏️
Editing: cliff_rand.awk
Read Only
# cliff_rand.awk --- generate Cliff random numbers # # Arnold Robbins, arnold@skeeve.com, Public Domain # December 2000 BEGIN { _cliff_seed = 0.1 } function cliff_rand() { _cliff_seed = (100 * log(_cliff_seed)) % 1 if (_cliff_seed < 0) _cliff_seed = - _cliff_seed return _cliff_seed }
💾 Save Changes
❌ Cancel