Server IP : 68.65.122.142 / Your IP : 3.149.24.9 Web Server : LiteSpeed System : Linux server167.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : glenirhm ( 1318) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/share/locale/mni/../wba/../co/../phn/../afh/../quz/../no/../km/../af/../id_ID/../arw/../osa/../ang/../grb/../../locale/cu/../pi/../smn/../afh/../fy/../kab/../mas/../sco/../ks/../frr/../es_PR/../zen/../lt/../peo/../ada/../jpr/../jam/../sa/../car/../nap/../br/../sad/../crp/../../awk/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
# join.awk --- join an array into a string # # Arnold Robbins, arnold@skeeve.com, Public Domain # May 1993 function join(array, start, end, sep, result, i) { if (sep == "") sep = " " else if (sep == SUBSEP) # magic value sep = "" result = array[start] for (i = start + 1; i <= end; i++) result = result sep array[i] return result }