1、文件目录操作 pwd:显示当前目录 cd:目录跳转
ls:-a—全部;-l—列举目录;-F--文件类型;-r--逆向(从后向前);-R--递归;-S--大小 locate:查找文件或目录 clear:清除终端窗口
cat:显示文件内容 head:查看文件开头部分 ...
分类:
系统相关 时间:
2014-07-22 23:14:53
阅读次数:
708
sed‘s/^/\//g‘4行首增加指定字符提取网页中的播放地址:#!/bin/bash
printf"enteryourdir:"
readdir
echo"$dirisxx"
cd$dir
echo`pwd`
forfilein`ls.`
do
if[-d$file];then
echo$file
cd$file
echo`pwd`
tree`pwd`|grepplay|sed‘s/.*//g‘>11
tree`pwd`|grepplay|sed‘s/.*//g..
分类:
其他好文 时间:
2014-05-03 00:53:15
阅读次数:
336
采用sys or system / manager as sysdba;
连接数据库。创建普通用户konglin: create user konglin identified by pwd_oracle;删除用户, drop
user konglin;授予用户登录数据库的权限: grant cre...
分类:
数据库 时间:
2014-05-01 15:29:35
阅读次数:
372
--setgithubproxygitconfig--globalhttp.proxyhttp://user_name:user_pwd@user_ip:portgitconfig--systemhttp.sslcainfo/bin/curl-ca-bundle.crt--cancelproxygi...
分类:
其他好文 时间:
2014-04-30 01:13:49
阅读次数:
507
1. cd命令格式:cd
[dirName](cd和目录之间使用空格隔开)作用:切换当前目录至dirName。实例:cd /home 切换当前目录到/home
(查看当前目录命令为pwd)cd .. 返回上一级目录cd ../.. 返回上两级目录cd ~ 进入个人的主目录2. ls命令格式:ls [...
分类:
系统相关 时间:
2014-04-29 18:41:53
阅读次数:
821
一、linux 命令 0.man:查询使用手册1.pwd:Print the full
filename of the current working directory. 打印当前工作目录(文件夹)2.ls:List information
about the FILEs (the current...
分类:
编程语言 时间:
2014-04-29 11:31:46
阅读次数:
489
密码正则表达式至少6位并由数字和字母组成:var pwd=
/^(?!\d+$)(?![A-Za-z]+$)[a-zA-Z0-9]{6,}$/;至少6位并由字母(区分大小写)、数字、符号其中2种组成:var pwd =
/^(?!\d+$)(?![A-Za-z]+$)(?![-.!@#$%^&*()...
分类:
其他好文 时间:
2014-04-29 10:15:46
阅读次数:
356