Server IP : 68.65.122.142 / Your IP : 3.21.100.34 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) : /var/../sbin/../share/locale/sv/../bad/../arp/../os/../ff/../it/../kk/../nah/../sl_SI/../ko/../ur_PK/../he/../en_ZA/../jam/../om/../ur/../af/../gor/../sla/../sit/../se/../szl/../ht/../tmh/../tt/../bej/../no/../afa/../bg/../wo/../kos/../rm/../umb/../ml/../sad/../ps/../lun/../sem/../en@quot/../ayc/../uk/../sms/../nl_BE/../eu/../dv/../../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 }