`
informilinux
  • 浏览: 784 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论
文章列表
在BASH脚本中执行SQL可以通过: dbaccess [databasename] file.sql 或者: dbaccess filename.sql (if the file contains a DATABASE statement at the top.) To embed SQL in a shell script, you can use a 'here document' approach, which I think is what you're alluding to: 或者在脚本中使用内嵌文档: #!/bin/ksh echo "Starting&q ...

VIM基础

    博客分类:
  • vim
文本跳转 w/W: 按词前跳 b/B: 按词回跳 $:行尾 0:行首,非空行首使用^ { }:段落跳转 f{字符}:跳到本行{}打头的第一个字母,F往回跳 文本编辑: ci" 删除引号内的所有内容 dW 删除一个词 p 后添加 P 前添加 查找与替换: / 向下找,n 下一个 N 前一个 ? 向上找 []s/Pattern/ReplaceWith/g []可以是 % 表示全文或"a,b"表示特定范围,gi 表示忽略大小写 gc 表示需要独立确认 Visual在Normal输入V V}%在某个范围内进行替换 寻找模式的 ...
Global site tag (gtag.js) - Google Analytics