码迷,mamicode.com
首页 >  
搜索关键字:commands    ( 1138个结果
git常用命令整理
You have an empty repository To get started you will need to run these commands in your terminal. Configure Git for the first time git config --global ...
分类:其他好文   时间:2018-04-22 13:11:53    阅读次数:193
shell函数和数组
[toc]shell函数和数组一、shell中的函数1.1函数格式1functionname{commands}示例1:#!/bin/bashfunctioninp(){//定义一个inp的函数echo$1$2$3$0$#}inp1a2b//传入参数//传入参数运行结果[root@xavi~]#shfunction1.sh1a2function1.sh4[]$1:第一个参数就是如上的“2”[]$2
分类:编程语言   时间:2018-04-22 13:05:39    阅读次数:197
Hadoop命令手册
原文地址:http://hadoop.apache.org/docs/r1.0.4/cn/commands_manual.html 概述 常规选项 用户命令 archive distcp fs fsck jar job pipes version CLASSNAME 管理命令 balancer da ...
分类:其他好文   时间:2018-04-16 22:47:44    阅读次数:287
三层交换机dhcp服务配置命令
每个二层交换机上配置好VLAN ,在三层交换机上配置好VLAN ip ,在三层交换机上打开fa0/1-fa0/3的trunk ,再给三层交换机配置dhcp服务,下面是VLAN10的,每个VLAN配一遍, sw1#conf t Enter configuration commands, one per ...
分类:其他好文   时间:2018-04-16 20:44:49    阅读次数:216
Python模块 - subprocess
subprocess – 创建附加进程 subprocess模块提供了一种一致的方法来创建和处理附加进程,与标准库中的其它模块相比,提供了一个更高级的接口。用于替换如下模块: os.system() , os.spawnv() , os和popen2模块中的popen()函数,以及 commands ...
分类:编程语言   时间:2018-04-10 18:49:40    阅读次数:224
openssl的应用及创建CA
openssl命令行工具:    众多的子命令实现各种安全加密功能;    ]# openssl ?    显示的内容有        Standard commands(标准命令)       &n
分类:其他好文   时间:2018-04-05 16:27:58    阅读次数:129
Redis命令
参考: http://doc.redisfans.com/ http://www.runoob.com/redis/redis-commands.html Redis 命令 Redis 命令用于在 redis 服务上执行操作。 要在 redis 服务上执行命令需要一个 redis 客户端。Redis ...
分类:其他好文   时间:2018-03-28 23:54:27    阅读次数:171
laravel5.5artisan命令
1. 简介 Artisan 是 Laravel 自带的命令行接口,它提供了许多实用的命令来帮助你构建 Laravel 应用 查看所有可用命令列表 2. 编写命令 2.1 构建自己的命令 命令默认存储在app/Console/Commands目录,可以通过以下方法生成命令文件 文件内容 使用方法 2. ...
分类:其他好文   时间:2018-03-27 18:48:48    阅读次数:1370
(error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk.
今天运行Redis时发生错误,错误信息如下: (error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modi ...
分类:数据库   时间:2018-03-25 12:02:24    阅读次数:173
JavaScript 异步、栈、事件循环、任务队列
概览 我们经常会听到引擎和runtime,它们的区别是什么呢? 引擎:解释并编译代码,让它变成能交给机器运行的代码(runnable commands)。 runtime:就是运行环境,它提供一些对外接口供Js调用,以跟外界打交道,比如,浏览器环境、Node.js环境。不同的runtime,会提供不 ...
分类:编程语言   时间:2018-03-16 13:35:19    阅读次数:197
1138条   上一页 1 ... 28 29 30 31 32 ... 114 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!