1、概述 大数据程序员为什么要学习Shell? (1)需要看懂运维人员编写的shell程序 (2)偶尔会编写一些简单shell程序来管理集群、提高开发效率 Shell是 一个命令行解释器,它接收应用程序/用户命令,然后调用操作系统内核 Shell是一个功能强大的编程语言、易编写、易调试、灵活性强 2 ...
分类:
系统相关 时间:
2020-06-24 19:56:46
阅读次数:
63
参考网址 :http://blog.csdn.net/renfufei/article/details/23701765 http://blog.csdn.net/ethanzhao/article/details/4406017 http://tool.lu/crontab crontab任务表达 ...
分类:
数据库 时间:
2020-06-24 19:23:28
阅读次数:
68
数据类型 int(number 数字) str print("hello,world!","dasw",sep"") # 输出 define(定义) # shell(命令行) # arguments (参数) 数据结构 list(列表) tuple(元组) dict(字典) set(集合) 函数 类 ...
分类:
其他好文 时间:
2020-06-24 17:57:55
阅读次数:
87
先是shell脚本 <?php @error_reporting(0); session_start(); if (isset($_GET['pass'])) { $key=substr(md5(uniqid(rand())),16); $_SESSION['k']=$key; print $key ...
分类:
其他好文 时间:
2020-06-24 14:22:32
阅读次数:
76
函数介绍(function用法) 1、function用法 1、函数function是由若干条shell命令组成的语句块,实现代码重用和模块化编程。 2、它与shell程序形式上是相似的,不同的是它不是一个单独的进程,不能独立运 行,而是shell程序的一部分,定义函数只对当前的会话窗口有效,如果再 ...
分类:
系统相关 时间:
2020-06-24 00:45:01
阅读次数:
123
项目汇报要录制一些视频和截图、Gif 等,于是就收集了一些好用的软件,安装方法如下,使用方法都很容易就不介绍了: 1. 录屏 SimpleScreenRecorder(建议) sudo add-apt-repository ppa:maarten-baert/simplescreenrecorder ...
分类:
系统相关 时间:
2020-06-24 00:29:30
阅读次数:
95
旧手机只升级到android 6.0, 一些APP显示不正常。准备用模拟器试试。 0、从官网下载逍遥模拟器,安装。我选了工作室版。 启动后提示没开VT ,在BIOS中打开VT 重启,到逍遥市场下载安装了一个APP,正常运行了。 1、先进入逍遥模拟器安装目录(MEmu文件夹下),如:D:\Progra ...
分类:
数据库 时间:
2020-06-23 21:01:34
阅读次数:
344
script script is the only required keyword that a job needs. It's a shell script which is executed by the Runner. For example: job: script: "bundle ex ...
分类:
其他好文 时间:
2020-06-23 18:56:37
阅读次数:
111
最进项目中使用到了socketproc通信,但是这样有一点不是很好,必须单独启动一个进程来执行代码中的shell命令,后面想在nginx+lua的环境下使用openresty中的lua-resty-shell,但是在后续阅读源码说明的时候发现依赖关系过于复杂,会导致引入的openresty模块越来越 ...
分类:
其他好文 时间:
2020-06-23 18:55:07
阅读次数:
110
#!/bin/bash ssh-keygen cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys chmod 700 ~/.ssh chmod 600 ~/.ssh/authorized_keys ulimit -n 10000 yum install - ...
分类:
系统相关 时间:
2020-06-23 15:50:21
阅读次数:
83