mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-10 10:44:59 -04:00
8 lines
No EOL
81 B
Awk
8 lines
No EOL
81 B
Awk
|
|
# awk -f math1
|
|
{
|
|
no1 = $1
|
|
no2 = $2
|
|
ans = $1 + $2
|
|
print no1 " + " no2 " = " ans
|
|
} |