> tamp.txt>会清空文件内容>>追加文本内容cmd &> output.txt 将错误和输_xshell复制文本待符号">
当前位置:   article > 正文

【xshell初步了解】_xshell复制文本待符号

xshell复制文本待符号

看懂xshell

#!/bin/bash

#执行sh命令
chmod a+x .sh #赋权限
echo "welcome to bash"
printf
环境变量
cat /proc/$PID/environ
获取进程ID
pgrep
var=value赋值操作
与var = value相等操作

echo "this is sample text 2" >> tamp.txt
>会清空文件内容>>追加文本内容

cmd &> output.txt 将错误和输出整合到一个文件中

declare 声明
declare -A fruite_value
fruite_value=([apple]='aaa' [orange]='dddd')

alias别名


cat wenjain.txt | tr -s '\n'#去掉空行

cat -n wenjian.txt#显示行号

find /home -name "*.txt" -print
find . \( -name "*.txt" -o -name "*.pdf"\) -print
find /home -path "*.txt" -print#返回文件路径
-maxdepth 2 遍历深度
-type f 普通文件
l 符号链接
d 目录
c 字符设备
-perm 666 文件权限
-user slynux 用户所拥有的文件
-exec 执行

find . -type f -name "*.txt" -print0 | xargs -0 rm -f

tr 转换


校验与核实
md5sum shalsum

rename

if [ -e /home ]; then fi 判断文件是否存在

mkdir -p /home/test/hello/child 忽略已经存在的文件夹

文件权限所有权和粘滞位
chmod a+rwx

chattr 
sudo chattr +i file  创建不可修改的文件
chattr -i file移除

touch in {1..100}.txt
do
touch $name
done
生成多个文件

diff -u 1.txt 2.txt > 3.txt

patch 

head tail 

tree -h 打印文件大小

grep -E "[a-z]+"

wget url
-t 5 重复的次数
--linit-rate 20k 限速
--quota或-Q 限制下载的大小
-c 从断点下载
--mirror 迭代下载

curl

-o写入文件
--silent 显示错误信息
--progress 显示进度
-I-head 打印http的头部信息

tar
a
c创建文件
d打印出区别
r
u
x提取文件
f指定文件夹的名字
v打印文件权限所属文书修改时间
-c 指定提取文件的目录


rsync备份系统快照
-a 进行归档
-v 打印进度

ifconfig
echo ip symbolic >> /etc/hosts 域名解析
route add default gw ip interface_name设置默认网关

traceroute google.com

lftp username@ftphost:-> get filename 下载文件
put filename 上传文件

quit退出

du,df


ps是收集进程的重要工具
-f -e -ax
-o
pcpu cpu占用率
pid 进程id
ppid 父进程id
pmem 内存使用率
comm 可执行的文件名
cmd 
user 启动进程的用户
nice 优先级
time 累计的cpu时间
etime 进程启动后度过的时间
euid 有效用户id
stat 进程状态

top
pgrep command -d delimiter_string

kill
-1 对控制的进程和终端挂起检测
-2 按下ctrl+c发起该信号
-9 强行杀死进程
-15 默认用于终止进程
-20 按下ctrl+z发起该信号

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/304500
推荐阅读
相关标签
  

闽ICP备14008679号