码迷,mamicode.com
首页 > 系统相关 > 详细

shell1

时间:2019-03-13 12:23:28      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:user   use   yellow   path   bin   file   backup   pgrep   let   

1.echo $PATH

   export PATH="$PATH:/home/user/bin"

PREPEND

prepend() { [ -d "$2" ] && eval $1=\"$2‘:‘\$$1\" && export $1; }

2.echo -e "\e[1;31m This is red text \e[0m"

0 black 30 red 31 green 32 yellow 33 bule 34 yangred 35 qing 36 white 37

backgroud color 0 black 40 red 41 green 42 y 43 bule 44 yangred 45 qing 46 white 47

 

3.env

cat /proc/$PID/environ

pgrep gedit  -> serch process ID

4.let (()) [  ]   bc

echo "scale=2;22/7" | bc

5.$?

echo $?

6. command | tee FILE1 FILE2  | otherCommand

cat a* | tee -a out.txt | cat -n     # -a  add

7.declare -A ass_array

8.alias rm=‘cp $@ ~/backup && rm $@‘

unalias

\command 

shell1

标签:user   use   yellow   path   bin   file   backup   pgrep   let   

原文地址:https://www.cnblogs.com/zhg1016/p/10522153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!