gedit搭建c开发环境
在管理外部工具中,创建启动脚本
1 #!/bin/sh 2 DIR=$GEDIT_CURRENT_DOCUMENT_DIR 3 NAME=$GEDIT_CURRENT_DOCUMENT_NAME 4 /home/lxy/code/c/struct/run.sh ${DIR}/${NAME}
创建run.sh
#!/bin/sh file=$1 ext=${file##*.} #C if [ $ext = "c" ]; then if [ -f $file ]; then #Complite gcc ${file} -o ${file%.*} #Run ${file%.*} echo "\n\n"$file else echo "Please Input File !, ex: sh run.sh test.c" fi fi #Python if [ $ext = "py" ]; then /usr/bin/python ${file} fi
这段代码会通过程序文件的扩展名,有选择的运行编译器,所以geditor只需要设置一个快捷键运行程序就可以了