Linux Shell 笔记
Linux Shell分类,各项配置,输出重定向,常用命令mutt、chmod、nohup、crontab等。
1 Shell分类
1.1 按是否交互式
非交互式shell
定义:为运行一个shell脚本启动的shell。
bash启动时执行的startup文件:由环境变量BASH_ENV来决定
交互式shell
定义:工作方式是交互式的,等用户输入,然后执行,再等用户输入。
1.2 按是否登录式
非登录shell
定义:不需要输入用户名和密码即可打开的Shell,例如:直接命令“bash”就是打开一个新的非登录shell,在Gnome或KDE中打开一个“终端”(terminal)窗口程序也是一个非登录shell。
bash启动时执行的startup文件:仅为~/.bashrc
登录shell
定义:需要用户名、密码登录后才能进入的shell(或者通过”–login”选项生成的shell)
bash启动时执行的startup文件:
- /etc/profile
- ~/.bash_profile,~/.bash_login or ~/.profile, first existing readable file is read
注意,作为登陆shell时bash并不读取~/.bashrc,但是在文件~/.bash_profile中通常都会读取~/.bashrc。
参考:
- http://smilejay.com/2012/10/interactive-shell-login-shell/
- http://www.cnblogs.com/cute/archive/2011/03/17/1987278.html
- http://blog.chinaunix.net/uid-14735472-id-3190130.html
2 Linux配置
2.1 .bash_profile
跟/etc/profile不同的是,.bash_profile的配置只影响单个用户,不对其它用户产生影响。
1 | # .bash_profile |
2.2 .bashrc
启动一个bash时直接source ~/.bashrc, 而这~/.bashrc里面会source /etc/bashrc等1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
if [ -f /etc/profile ]; then
. /etc/profile
fi
# User specific aliases and functions
export PS1='\[\033[0;32m\]\A \[\033[0;31m\]\u\[\033[0;34m\]@\[\033[0;35m\]\h\[\033[0;34m\]:\[\033[00;36m\]\w\[\033[0;33m\] \$\[\033[0m\] '
alias ll='ls -lht --color=auto'
# -h 人力可读的文件大小,配合-l使用
# -t 按修改时间排序
配置参考:http://www.360doc.com/content/11/0103/05/3688062_83518447.shtml
3 其他配置
3.1 .hiverc
显示当前数据库名,使用test数据库。另外 SET hive.cli.print.header=fasle 可隐藏表头1
2set hive.cli.print.current.db=true;
use test;
3.2 .vimrc
字自动语法高亮,显示行标1
2
3syntax enable
syntax on
set nu
3.3 .muttrc
邮件设置等1
2
3
4
5
6set charset="utf-8"
set rfc2047_parameters=yes
set envelope_from=yes
set use_from=yes
set from=my@domain.com
set realname="某某"
4 Linux命令
4.1 mutt
例如1
echo -e "Hi,\n\t×××的需求已完成,如有问题,请联系我。谢谢。" | mutt name@domain.com -s "×××需求完成" -a test.txt -b my@domain.com
解决附件太大问题:http://crazyof.me/blog/archives/540.html
已知如下限制,但需权限修改
mailbox_size_limit = 51200000
message_size_limit = 30720000 (29.296875mb)
另可分卷:zip -s 5m text.zip --out final
4.2 chmod
修改linux文件权限命令:chmod 777
4.3 输出重定向
1 是标准输出,默认
2 是错误输出,否则立刻打印在console上
例如:1
2
3
4
5# hive查询结果输出到text.txt,hive查询日志输出到text.log
hive -e "select * from db limit 10" 1> text.txt 2> text.log
# hive查询日志和查询结果都输出到text.out
hive -e "select * from db limit 10" 1> text.out 2>&1
4.4 nohup
忽略任何中断/挂起信号,使命令继续执行。
语法:nohup Command [ Arg ... ] [ & ]
使用jobs
查看任务。
使用fg %n
关闭任务。
如果不将 nohup 命令的输出重定向,输出将附加到当前目录的 nohup.out 文件中。
例如:1
2
3
4
5# 不中断的后台运行,hive查询结果输出到text.txt,hive查询日志输出到text.log
nohup hive -e "select * from db limit 10" 1> text.txt 2> text.log &
# 不中断的后台运行,hive查询日志和查询结果都输出到text.out
nohup hive -e "select * from db limit 10" 1> text.out 2>&1 &
参考:http://www.cnblogs.com/hnrainll/archive/2011/07/04/2097408.html
4.5 crontab
定时任务
crontab -e
编辑crontab服务文件crontab -l
查看该用户下的crontab服务是否创建成功
例如:每天10:30后台执行脚本,并把错误输出重定向1
30 10 * * * sh /data/work/my.sh 2> /data/work/text.log &
其中my.sh因需要用到hive命令,且crontab执行环境的环境变量和shell执行环境变量不一样,因此需要source ~/.bashrc,使得调用到/etc/profile,将hive的path加入进来,并cd到相应目录下。1
2
3
4#!/bin/bash
source ~/.bashrc
cd /data/work
hive -e "select * from db limit 10" > text.txt
crontab 执行环境变量的问题: http://my.oschina.net/chenzuoping/blog/185383
参考:http://www.blogjava.net/freeman1984/archive/2010/09/23/332715.html