linux
Winterto1990
这个作者很懒,什么都没留下…
展开
-
linux中使用shell进行数据库各种操作
下面附上通过shell命令行非交互式的操作数据库的方法:mysql -hhostname -Pport -uusername -ppassword -e 相关mysql的sql语句,不用在mysql的提示符下运行mysql,即可以在shell中操作mysql的方法。#!/bin/bashHOSTNAME="127.0.0.1" #数据库信息PORT="3306"转载 2018-01-08 08:49:37 · 6395 阅读 · 0 评论 -
shell中if操作手册
一 简介 1 字符串判断str1 = str2 当两个串有相同内容、长度时为真 str1 != str2 当串str1和str2不等时为真 -n str1 当串的长度大于0时为真(串非空) -z str1 当串的长度为0时为真(空串) str1 当串str1为非空时为真\ >转载 2018-01-08 09:30:47 · 1179 阅读 · 0 评论