中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機版  

Linux常用命令|Linux培訓學習|考試認證|工資待遇與招聘,認準超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡工程師培訓

當前位置:網(wǎng)絡工程師 > 技術課程 > linux > 熱點關注 > linux常用命令

Linux 常用命令(五)

時間:2019-07-27

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

作者:小徐

制作時間:20180601

聯(lián)系方式: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文件,節(jié)省了時間

使用mv快速對文件重命令

# mv docker.install.sh{,_sd}

# ls

docker.install.sh_back

使用win編輯好的文件傳向linux上時會有特殊的符號,還有l(wèi)inux平臺上行不識別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