码迷,mamicode.com
首页 >  
搜索关键字:minimum depth of bin    ( 47234个结果
Linux 环境变量 $PATH
我们知道查阅文件属性的指令 ls 完整文件名为:/bin/ls(这是绝对路径),那为什么可以在任何地方执行/bin/ls 这个指令呢? 为什么在任何目录下输入 ls 就一定可以显示出一些讯息而不会说找不到该 /bin/ls 指令呢? 这是因为环境变量 PATH ! 当我们在执行一个指令的时候,比.....
分类:系统相关   时间:2014-05-29 05:06:54    阅读次数:386
postgresql自动备份
bak_dir="/home/backupfiles/db" #备份路径pg_dir="/usr/local/pgsql/bin" #pgsql路径date_dir=`date +%Y/%m/%d`dbname="数据库名字"PGPASSWORD="超级用户postgres的密码"export PG...
分类:数据库   时间:2014-05-29 02:48:34    阅读次数:475
Android开发学习---template requires a minimum SDK version of at least 7,build target API version of 14
adt22.6.3的bug当adt更新到22.6.3,其编辑器中最低支持api7,即android 2.1,这里可能是google故意这么做的,也可能是其bug.其target sdk 和compile sdk最低都为14,即anroid 4.0,这里建议都设为最高的api 19,即android ...
分类:移动开发   时间:2014-05-29 02:43:25    阅读次数:607
Python统计nginx脚本信息
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 import urllib2 4 import json 5 import subprocess 6 import threading 7 8 #统计10个最长访问的ip 9 ip_raw =.....
分类:编程语言   时间:2014-05-28 21:47:39    阅读次数:386
[leetcode]Minimum Path Sum @ Python
原题地址:https://oj.leetcode.com/problems/minimum-path-sum/题意:Given amxngrid filled with non-negative numbers, find a path from top left to bottom right w...
分类:编程语言   时间:2014-05-28 03:03:13    阅读次数:320
清空系统日志shell scripts——自学笔记
这是一个清空系统日志的脚本:vim logmess_clean.sh#bin/bash //该脚本所使用的shell解释器cd /var/log///切换到存放日志目录echo > messages//清空日志echo "logmessages is clean"//脚本执行完成后输出“日志清空”[...
分类:其他好文   时间:2014-05-28 02:09:50    阅读次数:320
linux系统环境变量.bash_profile/bashrc文件
系统环境变量的查看:[root@localhost ~]# envHOSTNAME=localhost.localdomainSELINUX_ROLE_REQUESTED=TERM=xtermSHELL=/bin/bashHISTSIZE=1000SSH_CLIENT=192.168.7.105 5...
分类:系统相关   时间:2014-05-28 00:48:18    阅读次数:415
《通过脚本查看哪些ip被占用》shell笔记
改脚本查看哪些ip被占用。#!/bin/bashfor i in {1..10} //赋予i变量1-10do//干什么ping -c1 -w1 192.168.7.$i &> /dev/null //ping 192.168.7.网段 每个ip1次 显示1行全输出到无底洞if [ $? -eq 0 ...
分类:其他好文   时间:2014-05-28 00:04:45    阅读次数:321
网络遥控器数据统计0526
一、统计脚本及代码 1 #!/bin/sh 2 3 root_dir=`pwd` 4 source_file="$root_dir"/operate0526.txt 5 single_file="$root_dir"/single0526.txt 6 result_file="$roo...
分类:其他好文   时间:2014-05-27 23:54:25    阅读次数:524
Proxmark3的固件介绍,编译和烧写
http://www.wwwer.net/archives/proxmark3-introduced.htmlProxmark3固件介绍Proxmark3是一个开源的安全设备,故此其内置的固件也是因开源而不断的进行升级以及修改,而我们团购回来的版本是较为稳定的r486,因为每次编译固件生成bin的时...
分类:其他好文   时间:2014-05-27 15:58:34    阅读次数:1258
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!