Used Linux Shell Command Before

--run .sh job command
sh .sh

--let job run behind stage
nohup ./.sh&

--met error as below when rub .sh job
error ‘XX.sh: line XX: sqlplus:command not found‘
method: source .bash_profile

--delete file, -f(delete directly without remaind)
rm -f filename

--delete folder
rm -rf foldername

--rename filename, mv(copy filename1 and renamed filename2)
mv filename1 filename2

--copy file/folder
cp /tellin/scu/temp /home/n-tinggan/scu

--check all process behind
ps -aux

--yesterday
‘date --date"last day" +%Y%m%d‘

--2 days ago
‘date --date"2 days ago" +%Y%m%d‘

--3 days ago
‘date --date"3 days ago" +%Y%m%d‘

--cp 20150810
--the files named like "evcTRA201503*.unl" copy to under the folder /home/n-tinggan
find . -name "evcTRA201503*.unl" -exec cp {} /home/n-tinggan \;

时间: 2024-10-02 08:39:00

Used Linux Shell Command Before的相关文章

Linux shell command学习笔记(一)

Key points: Shell种类,echo,$,基本语法,ls,man,su,sudo,grep,ps,clear,cp,rm,cat,more 参考:http://www.jb51.net/LINUXjishu/45329.html Shell的种类有很多种,例如CSH,Bourne Shell,Korn Shell.在现在的大多数Linux发行版中,默认的Shell一般都是Bourne again shell(bash). <echo> echo $SHELL 在Linux中,$符号

Linux Shell command (Quick Study)

cd /  : entry root directory-----------------------[email protected]:/etc$ cd /[email protected]:/$ pwd cd ~  : entry user root directory----------------------[email protected]:/$ cd ~[email protected]:~$ pwd/home/tangym ls    : list all files.pwd  

Linux shell command学习笔记(二)

<cut> 作用:从输入文件或者命令的输出中析取出各种域 用法:cut –c{字符串范围} –d{字段间分割符} –f{字段索引编号} 举例: (1)查看在线用户:who | cut –c1-8 (2)从系统文件/etc/passwd中获取用户名列表:cut –d: -f1 /etc/passwd [[email protected] ~]$ ls D4C Desktop Documents Downloads Music Pictures process process1 process2

linux shell basic command

Learning basic Linux commands Command Description $ ls This command is used to check the contents ofthe directory. $ pwd This command is used to check the presentworking directory. $ mkdir work We will work in a separate directory calledwork in our h

linux shell编程

1.什么是shell 2. 还是hello world程序 3. shell中的变量 3.1 系统变量 3.2 用户定义变量 3.2.1 用户定义变量规则 3.2.3 shell如何使用变量 3.2.3 全局变量 vs 局部变量 4. shell编程中的控制结构 4.1 条件判定 4.1.1 简单条件判定 4.1.2 组合判定 4.2  if - else 4.3 for 4.4 while 4.5 case 5. shell中的函数 5.1 函数声明和定义 5.2 函数调用 6. shell脚

Linux Shell脚本攻略(1.8)

1.8 使用别名 linux中的别名就相当于windows中的快捷方式,使用别名可以省去用户输入一长串命令序列的麻烦. 1.8.1 创建临时别名(快捷方式) alias new_command='command sequence' #格式说明 alias install='sudo apt-get install' #实例说明 在声明 install='sudo apt-get install'之后,就可以用install代替'sudo apt-get install'了.使用这种方式声明的别名

Linux Netcat command – The swiss army knife of net

Swiss Army Knife of networking netcat is a versatile tool that is able to read and write data across TCP and UDP network . Combined with other tools and redirection it can be used in number of ways in your scripts. You will be surprised to see what y

Linux shell脚本基础学习详细介绍(完整版)二

详细介绍Linux shell脚本基础学习(五) Linux shell脚本基础前面我们在介绍Linux shell脚本的控制流程时,还有一部分内容没讲就是有关here document的内容这里继续. Linux shell脚本基础已经被分成好几个部分了,这里对控制流程的内容也就马上讲完了,这是最后一部分关于here document,这里举例稍微有点复杂,我们慢慢来分析这个复杂Linux shell脚本. 6. Here documents 当要将几行文字传递给一个命令时,here docu

Linux shell脚本流程控制

博主搬家至51CTO,初来乍到,请多指教. 此次我们来通过实例解析Linux shell脚本流程控制 Linux shell脚本流程控制可分为三类:顺序执行,条件选择执行,循环执行 顺序执行:简单理解就是逐行执行脚本内容,逐行解读,逐行执行.(此处不做实例解析) 条件选择执行:可以理解为先进行某一条件的判断选择,再决定执行怎样的脚本内容.常见语句if case 条件选择语句:if if语句用法: 单分支 if 判断条件;then 条件为真的分支代码 fi 双分支 if 判断条件; then 条件