c/compile-file.sh

12 lines
155 B
Bash
Raw Permalink Normal View History

2023-01-13 12:56:32 +00:00
#!/usr/bin/sh
2023-01-13 13:32:58 +00:00
echo -n "Name of C file to compile: "
2023-01-13 12:56:32 +00:00
read c_file
2023-01-13 13:32:58 +00:00
echo -n "Name of resulting binary file: "
2023-01-13 12:56:32 +00:00
read bin_file
cc -o $bin_file $c_file
exit 0