码迷,mamicode.com
首页 > 系统相关 > 详细

linux学习记录.4.常用命令

时间:2018-06-23 19:19:31      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:忽略   压缩   移动   tac   ref   dir   记录   显示   linux   

帮助command --help    获取‘command‘命令的帮助

 

目录与文件

cd /home    进入‘home’目录

cd ..    返回上一级目录

cd       进入个人目录

cd -     返回上一级目录

pwd     显示当前路径

ls         查看目录中的文件与目录

ls -l      显示文件和目录的详细资料

ls -a     显示包含隐藏文件

mkdir   dir1    创建以一个‘dir1’目录

mkdir -p dir1/dir2   建立一个多层目录,dir1/dir2

rmkdir [-p] dir  删除空目录‘dir’,-p 连同上层的空目录也删除

touch [-acdmt] hello.c   建立一个‘hello.c’空文件,-a 仅修改时间,-c 仅修改时间若不存在则不建立新文件

cat [options] hello.c       从第一行开始显示文件hello.c内容,-A 相当于 -vET,-n 显示行号,-v 列出不可见字符,-E 换行符$显示,-T [tab]以^I显示

tac [options] hello.c  从最后一行开始显示

  nl [options] hello.c 显示文件hello.c的内容,-b

rm hello.c   删除文件’hello.c‘

rm [options] dir    删除文件夹dir,-r 向下递归,-f 忽略提示

cp [options] source destination 复制文件或目录

mv [options] source destination 移动文件或目录

chmod            改变文件权限

tar    压缩包 tar.gz    使用命令 tar -xzvf filename 解压到当前目录

 

系统

date 显示日期

cal   显示日历

sync 同步内存到硬盘

shutdown 关机

poweroff  关机

halt          关机

reboot     重启

 exit         退出终端

kill            关闭进程

 

软件工具

apt-get install packageName 安装/更新一个 deb 包

apt-get update  更新包

apt-get upgrade  升级软件

apt-cache search package

snap install packageName 安装一个 snap 包

snap refresh     更新

 

linux学习记录.4.常用命令

标签:忽略   压缩   移动   tac   ref   dir   记录   显示   linux   

原文地址:https://www.cnblogs.com/protogenoi/p/8469049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!