Linux干货
-
而
vsdf
-
装饰器
装饰器(Decorator) 装饰器推导过程 需求 一个加法函数,想增强它的功能,能够输出被调用过以及调用的参数信息 def add(x,y): return x + y 增加信息输出功能 def add(x,y): print(‘call {},{}+{}’.format(add.__name__, x, y)) return x + y 不足:打印语句的…
-
Python高阶函数和装饰器
高阶函数 First Class Object 函数在Python中是一等公民 函数也是对象,可调用(callable)的对象 函数可以作为普通变量、参数、返回值等等 高阶函数 数学概念y=g(f(x)) 在Python中,高阶函数应该满足下列至少一个条件 接受一个或者多个函数作为参数 输出一个函数 计数器 def counter(base): def in…
-
python装饰器1
简单介绍装饰器(注意格式)
-
Linux正则表达式及文件查找
1、显示当前系统上root、fedora或者user1用户的默认shell. # grep -E “^(root|fedora|user1)” /etc/passwd | cut -d: -f1,7 2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,…
-
linux运维
linux运维大纲,学习路线图
-
linux运维
linux运维大纲,学习路线图
-
linux运维
linux运维大纲,学习路线图
-
linux运维
linux运维大纲,学习路线图
-
linux运维
linux运维大纲,学习路线图
-
NFS实现共享wordpress
实验环境 192.168.68.134 wordpress站点 nfs-server 192.168.68.144 nfs-client 实验要求 nfs server共享/var/www/html目录 nfs clinet挂载nfs-server共享的目录,部署wordpress nfs server端 先部署wordpress…
-
不重启添加硬盘
添加硬盘后 ls /dev/sd* 不重启添加硬盘 [root@localhost ~]# cd /sys/class/scsi_host/ [root@localhost scsi_host]# ls host0 host1 host2 [root@localhost scsi_host]# echo “- – -”…
-
源码编译安装dropbear
tar -jxf dropbear-2013.58.tar.bz2 cd dropbear-2013.58 ./configure make PROGRAMS=”dropbear dbclient dropbearkey dropbearconvert scp” make PROGRAMS=”dropbear dbclie…
-
scp命令
scp命令: 基于ssh连接完成复制 scp [options] SRC… DEST/ scp [options] SRC DEST 存在两种使用情形: PULL获取: scp [options] [user@]host:/PATH/TO/SOMEFILE /PATH/TO/SOMEFILE PU…