摘要:
@echo off echo 1、我 goto a Rem 定位(跳转)到标签(标号)为“a”所在的行。 rem 第一次跳转:批处理从这里跳过了下面标签为“b”的几行代码,而直接从“a”所在的行开始执行。 :b rem 定义(设置)标签(标号)“b”。以下几行是第二个代码块。 echo 3、批处理 阅读全文
摘要:
create database python if not exits; #创建数据库 create table student( name varchar(20),age int); #创建表 create table name (id int(3) auto_increment not null 阅读全文
摘要:
查看当前系统基础信息 sh version //查看当前IOS版本。 sh running-config //查看当前系统中运行的配置信息 清除当前系统配置信息 erase starting-config //清除保存在启动配置文件信息。 手动设置时区+日期+时间 show clock //查看当前 阅读全文
摘要:
打印一个爱心 #猴赛雷 print'\n'.join([''.join([('AndyLove'[(x-y)%8]if((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3<=0 else' ')for x in range(-30,30)])for 阅读全文
摘要:
Mysql mysql的root密码重置 编辑mysql主配置文件 vim /etc/my.cnf 添加..grant参数 [mysqld] skip-grant 重启mysql服务 service mysqld restart 进入数据库不用授权 更新root用户密码 /usr/local/mysql/bin/mysql -uroot use mysql; update user set pa... 阅读全文