shell1
shebang = sharp-bang = #!
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
&& yu
|| huo
-eq =
-ne !
-gt >
-lt <
-ge >=
-le <=
9. if condition;
then
commands;
fi
if conditon;
then
commands;
else if condition; then
commands;
else
commands;
fi
10.
find
find . -type f -print
file type : f l d c b s p
-atime
-mtime
-ctime
find . -type f -atime -7 -print
-amin
-mmin
-cmin
find . -type f -amin +7 -print
-newer
find . -type f -newer file.txt -print
find . -type f -size +2k
-2k
2k
find . -type f -perm 644 -print
find . -type f -name "*.php" ! -perm 644 -print
find . -type f -user slynux -print
find . -type f -name "*.swp" -delete
find . -type f -user root -exec chown slynux { } \;
find . -type f -name '*.c' -exec cat { } \;>all_c_files.txt
find . -type f -name '*.c' -exec cat { } >all_c_files.txt \;
find . -type f -name '*.c' -exec cat { } >all_c_files.txt +
find . -type f -mtime +10 -name "*.txt" -exec cp { } OLD \;
find . -type f -name "*.txt" -exec printf "text file: %s\n" { } \;
11. xargs
echo "split1Xsplit2Xsplit3X" | xargs -d X
echo "splitXsplitXsplitXsplit" | xargs -d X -n 2
shell1的更多相关文章
- hadoop入门手册4:Hadoop【2.7.1】初级入门之命令:文件系统shell1
问题导读1.Hadoop文件系统shell与Linux shell有哪些相似之处?2.如何改变文件所属组?3.如何改变hdfs的文件权限?4.如何查找hdfs文件,并且不区分大小写? 概述文件系统 ( ...
- shell--1.shell 相关及变量
1.shell脚本解释器 Bourme Shell (/usr/bin/sh 或 /bin/sh ) Bourme Again Shell ( /bin/bash ) C Shell ( /usr/b ...
- 执行shell文件是,提示chmod: 更改'./shell1.sh' 的权限: 不允许的操作。
- 自学Linux Shell1.1-Linux初识
点击返回 自学Linux命令行与Shell脚本之路 1.1-Linux初识(架构.内核.shell) 1. Linux架构 Linux系统一般有4个主要部分:内核.shell.文件系统和应用程序.(有 ...
- 自学Linux Shell1.2-Linux目录结构
点击返回 自学Linux命令行与Shell脚本之路 1.2-Linux目录结构 /: 根目录,一般根目录下只存放目录,不要存放文件,/etc./bin./dev./lib./sbin应该和根目录放置 ...
- 自学Linux Shell1.3-Linux文件系统
点击返回 自学Linux命令行与Shell脚本之路 1.3-Linux文件系统 文件系统是文件存放在磁盘等存储设备上的组织方法.Linux系统能支持多种目前流行的文件系统,如EXT2. EXT3. F ...
- shell-1.shell概述、2.shell脚本执行方式
目录
- Linux之Shell1
1.输出命令:echo echo [选项] [输出内容] : -e 支持反斜线控制的字符转换.(类似于C语言的\) \\ 输出\本身 \t Tab键 \n 换行符 \f 换页符 ...
- 【学习笔记】Shell-1 变量:命名规范、变量赋值/取值/取消、局部变量/全局变量、预设环境变量
1.Shell变量 从变量的实质上来说,变量名是指向一片用于存储数据的内存空间. Shell变量是一种弱类型的变量,即声明变量时不需要指定其变量类型,也不需求遵循“先声明再使用”的规定,想用即可用. ...
随机推荐
- Collections方法的使用
public static void main(String[] args) { // 0.给List排序 List<Integer> list = new ArrayList<In ...
- 应用 memcached 提升站点性能
减少读自数据库和数据源 开源 memcached 工具是一个用来存储常用信息的缓存,有了它,您便无需从缓慢的资源,比如磁盘或数据库,加载(并处理)信息了.该工具可部署在专用的情况下,也可作为用完现有环 ...
- JS中的六大数据类型
js中有六种数据类型,包括五种基本数据类型(Number,String,Boolean,Undefined,Null),和一种复杂数据类型(Object). typeof 操作符 由于js中的变量是松 ...
- 前端面试回顾---javascript的面向对象
转:https://segmentfault.com/a/1190000011061136 前言 前一阵面试,过程中发现问到一些很基础的问题时候,自己并不能很流畅的回答出来.或者遇到一些基础知识的应用 ...
- jquery中数组对象下面的属性名名是动态的如何获取
<script> let normalListData = []; function temp() { for (var i = 0; i < 10; i++) { let rowC ...
- zabbix问题-非常少的网络故障失败或罕见:Proxy超时的问题
解决方案 在zabbix_agentd.conf中添加这些. BufferSend = 10 BufferSize = 150 MaxLinesPerSecond = 100 Timeout = 29 ...
- Django view(视图)
在Django MTV模式中,View视图负责业务逻辑部分,路由系统接收到HTTP请求,并将任务分配给相应的视图函数,由视图函数来负责响应这个请求.无论视图本身包含什么逻辑,都要返回响应. 在这里HT ...
- JS正则四个反斜杠的含义
我们首先来看如下代码,在浏览器中输出的是什么? // 在浏览器中输出的 console.log('\\'); // 输出 \ console.log('\\\\'); // 输出 \\ 一:js正则直 ...
- 多数据库有序GUID
背景 常见的一种数据库设计是使用连续的整数为做主键,当新的数据插入到数据库时,由数据库自动生成.但这种设计不一定适合所有场景. 随着越来越多的使用Nhibernate.EntityFramework等 ...
- Golang 入门系列(二)学习Go语言需要注意的坑
上一章节我们已经了解了 Go 环境的配置,不了解的,请查看前面的文章 https://www.cnblogs.com/zhangweizhong/p/9459945.html,本章节我们将学习 Go ...