mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
6 lines
122 B
Awk
6 lines
122 B
Awk
|
|
BEGIN {
|
||
|
|
a[1] = "elephantie"
|
||
|
|
a[2] = "e"
|
||
|
|
print split(a[1],a,a[2]), a[2], a[3], split(a[2],a,a[2])
|
||
|
|
}
|