"There isn't much that's special about C. That's one of the reasons why it's fast."
I love C for it's raw speed, (although it does have its drawbacks). We should all write more C.
With this shell script, you can compile and execute C "scripts" in one go!
Here's a simple example:
#include <stdio.h>
int main(void) {
printf("Hello World!\n");
return 0;
}
Run it by typing:
$ c hello.c
Hello World!
Or, call it from the shebang!
#!/usr/bin/c
#include <stdio.h>
int main(void) {
printf("Hello World!\n");
return 0;
}
$ chmod +x hello.c
$ ./hello.c
Hello World!
For all users:
$ git clone https://github.com/ryanmjacobs/c
$ sudo cp ./c/c /usr/bin/c
Just for a local user:
$ git clone https://github.com/ryanmjacobs/c
$ mkdir -p ~/.bin
$ cp ./c/c ~/.bin/c
$ echo 'PATH=$PATH:$HOME/.bin' >> ~/.bashrc
Note: if you install it somewhere other than /usr/bin/c
, then your shebang will be different.
For example it may be something more similar to #!/home/ryan/.bin/c
.
c will use whatever $CC is set to. You can change this with:
$ export CC=clang
$ export CC=tcc
$ # etc...
Anything you want passed to the compiler, put in quotes as the first argument.
Whether they're flags (-Wall
, -O2
, etc.) or file names (file.c
,
main.c
, etc.).
$ c "main.c other.c" arg1 arg2
$ c "main.c other.c -O3 -Wall -lncurses" arg1 arg2
With only one file, omit the quotes:
$ c hello.c
$ c main.c arg1 arg2
After adding a shebang, just set the file to executable and it's ready to run.
$ chmod +x file.c
$ ./file.c
Add this to the top of your C file:
#!/usr/bin/c
Just tack on any extra flags, options, or files you want passed to the compiler.
Then be sure to add the terminating --
characters.
#!/usr/bin/c file1.c file2.c -lncurses -lm --
$ cat hello.c | c
# ...or...
$ c < hello.c
$ c "" arg1 arg2 < hello.c
$ c "other.c -lncurses" arg1 arg2 < hello.c
Feel free to submit any ideas, questions, or problems by reporting an issue. Or, if you're feeling bit brave, submit a pull request. 😬
Just hack away and make sure that all of the tests pass.
$ cd tests
$ ./test.sh
The MIT License (MIT)
Copyright (c) 2015 Ryan Jacobs
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.