访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux 常用命令(五)

时间:2019-07-27

常用dos命令大全及其用法_linux常用命令_常用linux命令大全

作者:小徐

制作时间:20180601

联系方式:xiaoxubigdata@163.com

# ps -aux

USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND

root 1 0.0 0.1 44128 6620 ? Ss 10:24 0:01 /usr/lib/systemd/systemd --switched-root --system --deserialize 24

root 2 0.0 0.0 0 0 ? S 10:24 0:00 [kthreadd]

root 3 0.0 0.0 0 0 ? S 10:24 0:00 [ksoftirqd/0]

******

# ps -aux | sort -rnk 3 | head -n 5

# ps -aux| sort -rnk 4 |head -n 5

使用cp快速备份文件

# cp docker.install.sh{,_back}

# ls

docker.install.sh docker.install.sh_back

可以看出以上备份了一个*_back文件,节省了时间

使用mv快速对文件重命令

# mv docker.install.sh{,_sd}

# ls

docker.install.sh_back

使用win编辑好的文件传向linux上时会有特殊的符号,还有linux平台上行不识别doc格式的文件.

安装工具dos2unix工具包

# yum install -y dos2unix

# dos2unix --help

dos2unix 6.0.3 (2013-01-25)

printf("usage: %s %s\n", argv[0], "infile outfile")。int copy(char *infile,char *outfile)。if(strcmp(infile,outfile)。

-ascii convert only line breaks (default)

-iso conversion between DOS and ISO-8859-1 character set

-1252 Use Windows code page 1252 (Western European)

-437 Use DOS code page 437 (US) (default)

-850 Use DOS code page 850 (Western European)

-860 Use DOS code page 860 (Portuguese)

-863 Use DOS code page 863 (French Canadian)

-865 Use DOS code page 865 (Nordic)

-7 Convert 8 bit characters to 7 bit space

-c, --convmode conversion mode

convmode ascii, 7bit, iso, mac, default to ascii

-f, --force force conversion of binary files

-h, --help give this help

-k, --keepdate keep output file date

-L, --license display software license

-l, --newline add additional newline

-m, --add-bom add UTF-8 Byte Order Mark