liux服务器登陆软件:putty
liux学习网站 https://man.linuxde.net/pwd
马哥liux学习 (https://search.bilibili.com/all?keyword=马哥linux教程全套视频&from_source=nav_search_new)
命令格式
命令名称 [命令参数] [命令对象]
注意,命令名称、命令参数、命令对象之间请用空格键分隔。
命令对象一般是指要处理的文件、目录、用户等资源,而命令参数可以用长格式(完整的选项名称),也可以用短格式(单个字母的缩写),两者分别用--与-作为前缀。
liux常见命令:
文本管理目录
- touch命令https://man.linuxde.net/touch
touch 2020.txt
- mkdir命令https://man.linuxde.net/mkdir
mkdir 2020
- cp命令https://man.linuxde.net/cp
cp file /usr/men/tmp/file1
- mv命令https://man.linuxde.net/mv
mv file new_file
重命名
mv file /tmp/file1/new_file
/usr/tmp中的所有文件移到当前目录(用.表示)
mv /usr/men/* .
- rm命令https://man.linuxde.net/rm
rm -i 2020.txt 删除已有文件或目录之前先询问用户(删除要慎重)
rm -r file 删除当前目录下除隐含文件外的所有文件和子目录(慎重)
- dd命令https://man.linuxde.net/dd暂用不上
- file命令https://man.linuxde.net/file暂用不上
文本文件编辑命令
- cat https://man.linuxde.net/cat
cat -n file
注意:当文件较大时,文本在屏幕上迅速闪过(滚屏),用户往往看不清所显示的内容。因此,一般用more等命令分屏显示。为了控制滚屏,可以按Ctrl+S键,停止滚屏;按Ctrl+Q键可以恢复滚屏。按Ctrl+C(中断)键可以终止该命令的执行,并且返回Shell提示符状态。
- more https://man.linuxde.net/more
more -dc file
more -c -10 file
按Space键:显示文本的下一屏内容。
按Enier键:只显示文本的下一行内容。
按斜线符|:接着输入一个模式,可以在文本中寻找下一个相匹配的模式。
按H键:显示帮助屏,该屏上有相关的帮助信息。
按B键:显示上一屏内容。
按Q键:退出rnore命令。
- head https://man.linuxde.net/head
head -n 10 2020.txt
- tail https://man.linuxde.net/tail
tail -n 10 2020.txt
- tr https://man.linuxde.net/tr
- wc https://man.linuxde.net/wc
- stat https://man.linuxde.net/stat
- cut https://man.linuxde.net/cut
- diff https://man.linuxde.net/diff
工作目录切换命令
..........
引自生信星球学习小组第36期课程https://mp.weixin.qq.com/s/mnDJv5ssbhpYO5jr3o8sfg
cd tmp
vi hello_world.txt
#先保证电脑切换到了英文输入法,然后敲i键,就可以输入了
#写下你的感悟~10行简短的英文
Esc #退出编辑模式
:x #保存退出
网友评论