首页 > 系统相关 >14-Linux系统命令,通配符与快捷键

14-Linux系统命令,通配符与快捷键

时间:2023-11-25 21:34:59浏览次数:38  
标签:14 tar 快捷键 commonfile file Linux directory view newfile

 

#以下为Linux系统的基础命令,部分通配符与快捷键,#后接英文标注注释

#Usual commands:
pwd#print working directory
cd directory#go into the directory
cd ~#go back home
cd ..#go back upper level directory
mkdir directory#make new directory
vi file#make new file and edit it by vim tool, the method of vim tool can be learned by Internet
echo ni hao le a liangzai>file#create file with the content of 'ni hao le a liangzai'
touch file#create a blank file
grep -n word file1#search 'word' in file1 and show the row number
cp files path#copy the files to the path, if directory just add '-r'
mv files path#move the files to the path
rm files#remove the files
rm -fr directory#remove the directory forcedly
cat file#view the all content of the file
less file#view the file in pages, 'q' for out
more file#view the file by up and down keys, 'q' for out
head file#view the forward 10 rows of the file, the rows can be set by '-n 10'
tail file#view the backward 10 rows of the file, the rows can be set by '-n 10'
tar cfz newfile.gz commonfile#commonfile is compressed by gzip to the newfile.gz
tar cfv newfile.tar commonfile# commonfile is compressed by tar to the newfile.tar
tar xfvz newfile.gz# newfile.gz is decompressed by gzip
tar xfv newfile.tar#newfile.tar is decompressed by tar
gzip commonfile#commonfile is compressed by gzip in place without newfile
gzip -x commonfile.gz# commonfile.gz is decompressed by gzip in place
wget http/ftp#download
curl www.baidu.com#this command can check the Internet of the server
ls -lh#view all files and directories with detailed information
ps -aux#view all current running missions with PID
kill -9 PIDnumber#kill the mission forcedly with the PID number
chmod 777 file#give the jurisdiction of reading, writing and executing limits to the file
find ./ -name file/directory#search for file or directory from the current directory hierarchy, do not give a wide search scope

#Not usual commands:
ln -s originfile/directory linkfile/directory#create the soft link of file or directory
file filename#check the type of the file
history#show the history commands
df -m#show the space usage of system disk with Mb unit
du#check the storage of the directory, you can use 'ls -lh'
date#show current date
cal#show the calendar
lscpu#check the CPU information
which command#check the location of command

#Wildcard character:
*#match any character
?#match one charater
[[:upper:]]#uppercase
[[:lower:]]#lowercase
[[:alpha:]]#allcases including uppercase and lowercase
[[:digit:]]#number
[[:space:]]#space
[^]#match any single character outside the specified character range

#Shortcut keys:
Ctrl+A#move the cursor to the beginning of the command line
Ctrl+E# move the cursor to the end of the command line
Ctrl+C#stop the current command forcedly
Ctrl+L#clear the screen
Ctrl+U#delete the current command
up and down keys#show the history commands

#more information please view “https://blog.csdn.net/fymx203/article/details/94397469” or search yourself.

 

#强风吹拂~

标签:14,tar,快捷键,commonfile,file,Linux,directory,view,newfile
From: https://www.cnblogs.com/liangjinghui/p/17856142.html

相关文章

  • 11-在linux系统上安装R语言
      #我们在linux系统里面安装R,能够分析许多大数据。前提是安装好conda,可以看教程“https://blog.csdn.net/liangjinghui123/article/details/130318678?spm=1001.2014.3001.5501”#查看conda环境,可以看到现在是base基础环境condainfo--envs#创建名为R的环境,中间点......
  • Win10无法访问linux上的samba服务问题解决
    转自https://blog.csdn.net/u014635079/article/details/124703840服务端:Ubuntu20.04, samba版本4.13.17-Ubuntu客户端:Win10 问题1:按照教程搭建好samba服务之后,从windows可以ping通linux的情况下,从windows端无法连接samba服务器。 解决:通过打开Lanman工作站的启用不......
  • 2023-2024-1 20231424《计算机基础与程序设计》第9周学习总结
    2023-2024-120231424《计算机基础与程序设计》第9周学习总结作业信息作业属于的课程<班级链接>(2022-2023-1-计算机基础与程序设计)作业要求<作业要求>(2022-2023-1计算机基础与程序设计第一周作业)作业目标《计算机科学概论》第10,11章和《C语言程序设计》第8章......
  • 8-Linux系统安装conda,镜像设置,环境变量
      1,我们现在学习Linux系统,首先得有个服务器的账号,这个要看自己的学校里面有没有专门做生信的课题组问问,或者去淘宝买,或者去那个组学大讲堂公众号里面有服务器租借的(没广告),租个好点的服务器,价格估计5000-10000半年不等的价格,能处理一些转录组等大数据,也可以做WGCNA等其他的大......
  • Linux学习随笔——文件权限
    一、基本权限UGOU:属主;G:属组;O:其他用户;r:read(读取),数字设定为4;w:write(写入),数字设定为2;x:execute(执行),数字设定为1;使用ll命令查看文件属性,如下例子,忽略第一个“-”,前面3个字符表示属主的权限,中间3个表示属组的权限,后面3个表示其他用户的权限;-rw-r--r--(表示属主权限为读写6,属组权限......
  • 无涯教程-Linux - 目录管理
    在本章中,我们将详细讨论Unix中的目录管理。目录也是文件,它存储着文件名和文件相关信息,所有文件,无论是普通文件,特殊文件还是目录,都包含在目录中。Unix使用分层结构来组织文件和目录,这种结构通常称为目录树,该树只有一个根节点,即斜杠字符(/),所有其他目录都包含在其下方。Home目录......
  • Linux命令(131)之groupmod
    linux命令之groupmod1.groupmod介绍linux命令groupmod是用来修改组属性2.groupmod用法groupmod[参数]GroupNamegroupmod参数参数说明-n修改组名-g新的GID3.实例3.1.创建用户组命令:groupaddztj[root@rhel77~]#groupaddztj[root@rhel77~]#cat/etc/group|grepztjztj:x:......
  • Linux存储管理
    第七章存储管理存储是服务器的硬盘存储,在Linux系统下,系统识别到硬盘后,会为其创建一份初始分区表。硬盘在分区后才可以使用,系统通过分区表来管理硬盘的使用。存储方式从连接方式上,存储分为以下三种类型:本地存储:直接插在服务器上的硬盘,系统文件存放在本地。外部存储:可以理解为......
  • LINUX重定向
    与 Unix 主题“任何东西都是一个文件”保持一致,程序,比方说 ls,实际上把他们的运行结果输送到一个叫做标准输出的特殊文件(经常用 stdout 表示),而它们的状态信息则送到另一个叫做标准错误的文件(stderr)。默认情况下,标准输出和标准错误都连接到屏幕,而不是保存到磁盘文件。除此之......
  • linux中普通用户修改密码出现(passwd:Authentication token manipulation error)
    如果在linux中,不管是root用户还是普通用户登录后,修改自己的密码时出现---passwd:Authenticationtokenmanipulationerror错误,如下所示: 1、root自己修改密码失败  2、普通用户修改密码失败报出这样的错误(密码:身份验证令牌操作错误),一般会有2种情况发生。    第1种:密码文......