6 lines
108 B
Bash
Executable File
6 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
as *.s -o bf-cat.o
|
|
ld bf-cat.o -N -o bf-cat
|
|
strip bf-cat
|
|
echo "size =" $(wc -c bf-cat) "octets"
|