dashboard
repositories
activity
search
login
lzh
/
A133
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat(4g): Compatible with ec20 and ec200
huangcm
2024-12-18
9d29be7f7249789d6ffd0440067187a9f040c2cd
[~lzh/A133.git]
/
android
/
external
/
one-true-awk
/
bugs-fixed
/
numeric-fs.awk
1
2
3
4
5
BEGIN {
FS = 0; split("20202", a); print a[1];
FS = 1; $0="31313"; print $1;
FS = 2; "echo 42424" | getline; print $1;
}