一 Linux指令的学习
1.
pwd #当前路径
2.
vi *.txt
#先保证电脑切换到了英文输入法,然后敲`i`键,就可以输入了
# 按Esc键 退出编辑模式
:x #在左下角输入,意思是保存并退出
3.
cat *.txt #文件内容输出至屏幕,退出按q (我用mac,直接退出了,不用输出q,奇怪哦)
head # 输出前10行
tail # 输出后10行
head -n `number` *.txt # number = 前几行
4.
cp file newfile # 复制 file 成为 newfile
5.
mv file /home/bio08/tmp # 将 file 移动至 新路径下
mv file1 file2 # 重命名file1为file2
二 Linux 学习进度
WechatIMG10.jpeg参考资源:微信公众号-生信星球;乔豪-http://blog.sevenstar.store/#/linux/
网友评论