首页 > 其他分享 >tools

tools

时间:2024-12-14 10:55:53浏览次数:8  
标签:bin vimrc echo rm tools inoremap

\(\rm init.sh\) 这个是用在机房快速初始化 \(\rm cygwin\) 环境的。不知道在 \(\rm Linux\) 下可不可以使用。

#!/bin/bash
echo lsy-cmake

cat > ~/.vimrc << EOF
set nu
set autoindent
set expandtab
set tabstop=4
set shiftwidth=4
inoremap [ []<LEFT>
inoremap ' ''<LEFT>
inoremap { {}<LEFT>
inoremap " ""<LEFT>
inoremap ( ()<LEFT>
EOF
echo .vimrc-processing

cat > /usr/bin/g+ << EOF
#!/bin/bash
g++ \$1.cpp -o \$1.exe -std=c++14 -Wall -Wextra -Wl,-stack=999999999 -O2 -g
EOF
echo g+-processing

cat > /usr/bin/r+ << EOF
#!/bin/bash
g+ \$1;time ./\$1.exe
EOF
echo r+-processing

chmod a+x /usr/bin/g+
chmod a+x /usr/bin/r+
echo chmod-processing

echo lsy-Linux-init-finished
echo testing:

cat > ~/qwq.cpp << EOF
#include<bits/stdc++.h>
using namespace std;

signed main(){
    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    cout << "lsy_init_sh qwq";

    return 0;
}
EOF
echo testing g+:
g+ qwq
echo testing r+
r+ qwq
echo testing vim:
echo that is for you!
echo end

\(\rm g+\) 编译命令。

\(\rm r+\) 编译运行。

\(\rm .vimrc\) 我的 \(\rm vim\) 配置。

标签:bin,vimrc,echo,rm,tools,inoremap
From: https://www.cnblogs.com/little-corn/p/18606464

相关文章

  • ARM - Linux内核i2c-tools命令
    转自 https://zhuanlan.zhihu.com/p/509163257一、i2cdetect1、命令root@linaro-alip:/#i2cdetectError:Noi2c-busspecified!Usage:i2cdetect[-y][-a][-q|-r]I2CBUS[FIRSTLAST]i2cdetect-FI2CBUSi2cdetect-lI2CBUSisanintegeroranI......
  • [1079] QGIS tools to python code
    Steps:OpentheProcessingToolboxinQGIS.Searchforthedesiredtool,suchastheRasterCalculator.Settheparametersfortheselectedtoolaccordingtoyourrequirments.ClickonAdvanced,andconvertthetooltoPythoncode.Examples:RasterCal......
  • 1.langgraph中的Tool Calling (How to call tools using ToolNode)
    1.导入模块fromlangchain_core.messagesimportAIMessagefromlangchain_core.toolsimporttoolfromlanggraph.prebuiltimportToolNode2.工具定义@tooldefget_weather(location:str):"""Calltogetthecurrentweather."""......
  • itertools 模块学习
    1.创建无限循环迭代对象:count,cycle,repeatfromitertoolsimportcountforiincount(1,2):ifi>10:breakprint(i)#以1开始,2为步长,无限range结果:13579fromitertoolsimportcyclecolors=cycle(['red','green','blue�......
  • DevTools 函数使用,获取页面元素
    浏览器控制台使用方法:https://developer.chrome.com/docs/devtools/console/utilities?hl=zh-cn $() 是document.querySelector() 函数的快捷方式;   比如:<inputclass="el-input__inner"type="text"autocomplete="off"placeholder="Plea......
  • tools-在每行末尾加上//符号
    beawareofthefucking"\r"//Node.jsprogramtodemonstrate//thefsPromises.readFile()method//Includefsmoduleconstfs=require("fs");constfsPromises=require("fs").promises;asyncfunctionreadFile(){co......
  • tools- 去掉每行开头的数字
    1intsize=27;2Stringname="Fido";3DogmyDog=newDog(name,size);4intx=size-5;5if(x<15){6myDog.bark(8);7}89while(x>3){10x-=1;11myDog.play();12}1314int[]numList={2,4,6,8};15System.out.pri......
  • devtools layers.js
      import*asefrom"../../ui/legacy/legacy.js";import*astfrom"../../ui/visual_logging/visual_logging.js";import*asrfrom"../layer_viewer/layer_viewer.js";import*asifrom"../../core/common/common.js";imp......
  • Vue Devtools的下载和安装
    1.下载下载地址:https://github.com/vuejs/vue-devtools/tree/v5.1.1 下载下来zip包。解压到指定文件夹 2.安装依赖在这个目录,执行npminstall命令进行依赖安装 3.修改配置打开解压目录vue-devtools-master下的shells/Chrome/manifest.json文件,将代码"persistent":fal......
  • 蓝易云 - Ubuntu安装Net-tools和SSH
    在Ubuntu上安装Net-tools和SSH是常见的操作。下面是一个简单的教程:安装Net-tools:打开终端,并使用root权限登录到Ubuntu。运行以下命令以安装Net-tools:apt-getupdateapt-getinstallnet-tools​安装完成后,Net-tools的命令(如ifconfig、netstat等)将可用于网络配置和监控。......