You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
BEGIN {
|
|
FS = 0; split("20202", a); print a[1];
|
|
FS = 1; $0="31313"; print $1;
|
|
FS = 2; "echo 42424" | getline; print $1;
|
|
}
|