码迷,mamicode.com
首页 >  
搜索关键字:dir    ( 11861个结果
poj 2632
题意:一个房间由m*n个方块组成 每个机器人占据一个方块 这些机器人能够移动 问 这些机器人的移动动作全部完成后 会不会发生冲撞事件解题策略:简单的模拟题目#include#includeusing namespace std;struct Node{ int x,y; int dir...
分类:其他好文   时间:2014-06-07 06:03:49    阅读次数:205
linux shell设置颜色
使用echo或者printf时,可以添加输出文本的颜色设置echo -e "Maximum \e[1;31m" $max_threads "\e[0mthreads allowed!" >> $term_dir/summary或者printf("\033[;34mfile\033[0m")31开始代...
分类:系统相关   时间:2014-06-03 09:11:52    阅读次数:306
Linux命令学习
端午节放假了,闲来无事,学学一些Linux的基本的命令,扫一下盲。linux下的以.开头的文件都是隐藏文件。1.启动init -0 、reboot2.切换命令 cd (./代表当前位置 /绝对路径) cd - 退回 cd / 切换到根目录3.ls命令:类似dir命令,就是列出当前...
分类:系统相关   时间:2014-05-31 20:28:35    阅读次数:461
poj 1573
题意:给定每一步的定方向与初始位置 让求出去房间 或者进入循环的步数直接模拟#include#includeusing namespace std;int map[11][11];int v[11][11];int dir[4][2]={-1,0,1,0,0,-1,0,1};int main(){ ...
分类:其他好文   时间:2014-05-30 09:03:03    阅读次数:247
Traveling
题目描述SH likes traveling around the world. When he arrives at a city, he will ask the staff about the number of cities that connected with this city dir...
分类:其他好文   时间:2014-05-29 21:47:24    阅读次数:381
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
网络遥控器数据统计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
如何cp目录时忽略指定的目录和文件
在备份ltedecoder程序时,需要把此目录拷由到bak目录下,但decoder目录下有个大文件,不需要备份,还有日志问题,也不需要备份,如何实现呢?? 方法:      cd /source-dir         find . -name .snapshot -prune -o -print0 | cpio -pmd0 /dest-dir 解释: This command cop...
分类:其他好文   时间:2014-05-25 21:51:29    阅读次数:518
mod-jk与mod-proxy对根域名请求的不同处理一列
在apache中如果添加DirectoryIndex 指令,当请求URL是directory形式而不是某个具体的文件时它会自动帮忙去查找DirectoryIndex 后面定义的那些文件。具体详见:http://httpd.apache.org/docs/2.2/mod/mod_dir.html#di...
分类:其他好文   时间:2014-05-25 20:10:36    阅读次数:229
php -- 目录、路径、磁盘
-----028-dir.php ----- 1 2 3 4 5 文件夹 6 7 8 文件夹 9 10 26 27 28 -----029-path.php ----- 1 2 3 4 5 路径 6 7 8 路径 9 10 23 24 25
分类:Web程序   时间:2014-05-25 03:15:39    阅读次数:306
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!