This website works better with JavaScript.
首頁
探索
說明
登入
Madiwka
/
CPSRC
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
initial commit
master
RinRi-D
4 年之前
當前提交
e85cb97554
共有
1 個文件被更改
,包括
18 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+18
-0
setup.sh
+ 18
- 0
setup.sh
查看文件
@@ -0,0 +1,18 @@
# create.sh
echo $'cp template.cpp $1.cpp\nnvim -s .gg $1.cpp' > create.sh
# template
read -n 1 -r -s -p $'Press any key to create template file...\n'
nvim template.cpp
# start line
read -p $'Enter starting line of cursor:\n' line
((line=line-1))
echo "$line"gg > .gg
# run.sh
echo $'g++ -g $1\n./a.out' > run.sh
# make all executable
chmod +x create.sh
chmod +x run.sh
Write
Preview
Loading…
取消
儲存