Muyun99's wiki Muyun99's wiki
首页
学术搬砖
学习笔记
生活杂谈
wiki搬运
资源收藏
关于
  • 分类
  • 标签
  • 归档
GitHub (opens new window)

Muyun99

努力成为一个善良的人
首页
学术搬砖
学习笔记
生活杂谈
wiki搬运
资源收藏
关于
  • 分类
  • 标签
  • 归档
GitHub (opens new window)
  • 代码实践-目标检测

  • 代码实践-图像分割

  • 代码实践-自监督学习

  • 竞赛笔记-视觉竞赛

  • 框架解析-mmlab系列

  • 讲座记录-有意思的文章集合

  • 体会感悟-产品沉思录观后有感

  • 体会感悟-摄影

  • 系列笔记-

  • 系列笔记-乐理和五线谱

  • 系列笔记-爬虫实践

  • 系列笔记-Django学习笔记

  • 系列笔记-Git 使用笔记

  • 系列笔记-网站搭建

  • 系列笔记-图卷积网络

  • 课程笔记-MIT-NULL

    • Course overview and the shell
      • Course overview + the shell
        • 参考资料
  • 系列笔记-OpenCV-Python

  • 系列笔记-使用 Beancount 记账

  • 系列笔记-Python设计模式

  • 系列笔记-MLOps

  • 系列笔记-Apollo自动驾驶

  • 系列笔记-PaddlePaddle

  • 系列笔记-视频操作

  • Vue+Django前后端分离开发

  • 深度学习及机器学习理论知识学习笔记

  • PyTorch Tricks

  • 学习笔记
  • 课程笔记-MIT-NULL
Muyun99
2021-06-28

Course overview and the shell

# Course overview + the shell

date
echo hello
echo "Hello world"
echo $PATH

which echo
pwd(present working directory)

cd /home
cd .
cd ..
cd ~
cd -


ls
ls ..
ls --help
ls -l

# 权限控制
r--read
w--write
x--execute

# 移动/重命名
mv dotefiles.md foo.md

cp dotfiles.md foo.md

rm ../food.md

mkdir photos
rmdir photos

man ls
ctrl+L

# input streams 
# output streams

echo hello > hello.txt
cat hello.txt
cat < hello.txt

cat < hello.txt > hello2.txt
cat < hello.txt >> hello2.txt

ls -l / | tail n1

curl --head --silent google.com | grep -i content-length | cut --delimiter=' ' -f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

shell 通过环境变量来找程序

# 参考资料

  • https://missing.csail.mit.edu/

  • https://missing-semester-cn.github.io/

  • https://www.bilibili.com/video/BV14E411J7n2

  • https://www.youtube.com/watch?v=&list=PLyzOVJj3bHQuloKGG59rS43e29ro7I57J

  • https://missing-semester-cn.github.io/2020/course-shell/

上次更新: 2021/08/17, 18:07:06
节点分类是如何训练的
图像插值

← 节点分类是如何训练的 图像插值→

最近更新
01
Structured Knowledge Distillation for Semantic Segmentation
06-03
02
README 美化
05-20
03
常见 Tricks 代码片段
05-12
更多文章>
Theme by Vdoing | Copyright © 2021-2023 Muyun99 | MIT License
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式
×