C 스 크 립 트

1097 단어 각본
http://rosettacode.org/wiki/Multiline_shebang#C
https://news.ycombinator.com/item?id=9144467
인터넷 에서 C 언어 를 스 크 립 트 로 하 는 방법 을 보 았 습 니 다. 재 미 있 는 기술 입 니 다. make 명령 을 미리 설치 해 야 합 니 다.
root@kali:~# cat a.c
//usr/bin/make -s "${0%.c}" && ./"${0%.c}" "$@"; s=$?; rm ./"${0%.c}"; exit $s
#include <stdio.h>
int main(int argc, char** argv){
printf("%s
", "Hello World"); return 0; }

root@kali:~# chmod 777 ./a.c
root@kali:~# ./a.c
Hello World

//usr/bin/make -s "${0%.*}" && ./"${0%.*}" "$@"; s=$?; rm ./"${0%.*}"; exit $s
#include <stdio.h>
int main(int argc, char** argv){
printf("%s
", "Hello World"); return 0; }

좋은 웹페이지 즐겨찾기