13 lines
173 B
Bash
Executable File
13 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function f(){
|
|
sed -u "s|#.*||" |
|
|
sed -u "s|//.*||" |
|
|
sed -u 's|K|000|g' |
|
|
sed -u 's|M|000000|g' |
|
|
sed -u 's|B|000000000|g' |
|
|
/usr/bin/f
|
|
}
|
|
|
|
# f
|