18 lines
236 B
Bash
Executable File
18 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# clear - script for delete all builded files.
|
|
#
|
|
# Alexander Popov <iiiypuk@fastmail.fm>
|
|
|
|
files=(
|
|
"port_info"
|
|
"list_ports"
|
|
"send_receive"
|
|
"listen"
|
|
)
|
|
|
|
for file in ${files[@]}
|
|
do
|
|
rm $file &> /dev/null
|
|
done
|