摘要: http://man.linuxde.net/screen http://www.runoob.com/linux/linux-command-manual.html 阅读全文
posted @ 2017-01-02 21:30 Khazix 阅读(214) 评论(0) 推荐(0) 编辑
摘要: GNU的date提供+%s(小写s), 能打印出自1970-01-01 00:00:00到当前时间的秒数. 这可能大家都不陌生,但有两点需要注意: 1. %s存在于GNU扩展版本.像在solaris等UNIX上没有该参数. 2. 1970-01-01 00:00:00指的是UTC时间. (date 阅读全文
posted @ 2017-01-02 21:12 Khazix 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 在这里我想说的是几种shell里的小括号,大括号结构和有括号的变量,命令的用法,如下: 使用命令的结果 或者 变量的值时需要加$符号 1.${var} 2.$(cmd) 等价于 `` 3.()和{} 4.${var:-string},${var:+string},${var:=string},${v 阅读全文
posted @ 2017-01-02 14:37 Khazix 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 和大家分享一个飞机大战游戏源代码 如下图 如果想要知道游戏怎么做出来的可以访问: http://www.cnblogs.com/demonxian3/p/6238635.html 如果不想知道 可以直接按照下面流程搞出游戏来 准备: 先创建一个文件夹 在这个文件夹里面创建 images文件夹 和 j 阅读全文
posted @ 2017-01-01 23:04 Khazix 阅读(9648) 评论(0) 推荐(0) 编辑
摘要: 在github里看到了个不错的脚本游戏,决定亲自动手来写,效果如下 下面是代码的思路分享 把整个代码理解消化确实不容易,但是如果你坚持看完相信你一定会有收获 如果没兴趣可以直接点击下面的链接 复制代码 开玩: http://www.cnblogs.com/demonxian3/p/6241755.h 阅读全文
posted @ 2016-12-31 13:24 Khazix 阅读(4131) 评论(5) 推荐(2) 编辑
摘要: Shell 环境 1.解释器 Shell 编程跟java、php编程一样,只要有一个能编写代码的文本编辑器和一个能解释执行的脚本解释器就可以了。 Linux的Shell种类众多,常见的有: Bourne Shell(/usr/bin/sh或/bin/sh) Bourne Again Shell(/b 阅读全文
posted @ 2016-12-31 00:01 Khazix 阅读(107) 评论(0) 推荐(0) 编辑
摘要: <html><head><style> .short{height:50px;width:55px;float:left;}</style></head><body><script>var xianshi="";var shuzi="";var huanchun="";//如果连续输入数字,则累加其 阅读全文
posted @ 2016-12-24 14:58 Khazix 阅读(268) 评论(1) 推荐(1) 编辑
摘要: 初级篇 选择器 元素选择器css:h1{color: red}html:<h1> hello world </h1>类型选择器css:koo{color: red}html:<koo> hello world </koo>属性选择器css:[title]{color: red} //指定属性html 阅读全文
posted @ 2016-12-24 00:56 Khazix 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 初级篇 选择器 元素选择器css:h1{color: red}html:<h1> hello world </h1>类型选择器css:koo{color: red}html:<koo> hello world </koo>属性选择器css:[title]{color: red} //指定属性html 阅读全文
posted @ 2016-12-24 00:56 Khazix 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 需要工具extundelete(可通过xshell上传下载到linux)知识点:ifconifig eth0 查看ipfdisk /dev/sda 管理磁盘mkfs.ext4 /dev/sda4 格式化sda4分区为ext4的文件系统分区mount /dev/cdrom /mnt/ 挂载光驱umou 阅读全文
posted @ 2016-12-24 00:54 Khazix 阅读(559) 评论(0) 推荐(0) 编辑