基础命令: ls man pwd cd mkdir echo touch cp mv rm rmdir cat more less head tail clear poweroff reboot 进阶命令(下一章节): alias unalias uname su hostname history ...
分类:
系统相关 时间:
2019-07-17 20:24:50
阅读次数:
154
echo "hello world!" 报错,因为!有特殊含义echo 'hello world!' 正常输出\b:向左删除一个字符\n:换行\t:输出一个制表符,tab\\:输出一个\echo -e "ab\bc" 输出 ac 1.sh#!/bin/shecho "leilei is a good ...
分类:
系统相关 时间:
2019-07-09 09:21:17
阅读次数:
157
命令别名 alias h=history alias i='sudo apt-get install' alias r='sudo apt-get remove' alias ar='sudo apt-get autoremove' alias s='sudo apt search' alias f ...
分类:
系统相关 时间:
2019-04-30 17:01:34
阅读次数:
144
unalias 提示:命令行处理别名仅为临时取消别名,重启系统后就失效了 不提示确认 只有主动加上 -i参数才会提示确认 ...
分类:
系统相关 时间:
2019-04-29 19:11:25
阅读次数:
146
一、用一条命令完成创建目录/data/test,即在/目录下创建/data目录,及其子目录/data/test 解答:mkdir -p /data/test 实践过程: 二、已知/tmp目录下已经存在了test.txt文件,如何执行命令才能把/mnt/test.txt拷贝到/tmp下覆盖掉/tmp/ ...
分类:
其他好文 时间:
2019-04-01 17:21:52
阅读次数:
177
Linux 命令、配置文件及操作 命令 命令|参数|说明 | | A || alias、unalias||命令别名 B || C || cat||查看文件内容 cd||切换目录 chown||修改拥有着 chgrp||修改所属组 chmod||修改模式权限 clear||清屏 cp| a 等价 dp ...
分类:
系统相关 时间:
2019-03-09 20:16:51
阅读次数:
230
Shell学习之Shell特性 目录 命令和文件自动补齐功能 命令历史记忆功能 history、上下键、!number、!string、!$、!! 别名功能 alias、unalias cp、~username/.bashrc、\cp -rf /etc/hosts 快捷键 ^R ^D ^A ^E ^ ...
分类:
系统相关 时间:
2019-02-11 01:06:11
阅读次数:
219
shell中有很多内建命令,如何区分内建命令与外部文件,使用type command即可看到命令类型。 >> type cd # input << cd is a Shell builtin # output >> type ifconfig # input << ifconfig is /sbin ...
分类:
系统相关 时间:
2019-01-26 22:43:43
阅读次数:
245
1.命令别名设置:alias,unalias 命令别名可以帮助你在一些惯用命令特别长的时候,进行简化,帮助你减少命令误差 例: *例出当前已有的命令别名 [root@server3 ~]# alias alias cp='cp -i' alias egrep='egrep --color=auto' ...
分类:
其他好文 时间:
2019-01-15 00:57:54
阅读次数:
222
alias命令别名:选项:-p:打印已经设置的命令别名alias-p=alias实例:[root@localhost~]#aliascls=clear#把clear设置一个别名为cls[root@localhost~]#aliasaliascls=‘clear‘aliascp=‘cp-i‘aliasegrep=‘egrep--color=auto‘aliasfgrep=‘fgrep--color=
分类:
其他好文 时间:
2019-01-12 20:20:34
阅读次数:
221