每个Web开发者都该了解的12条命令行

前端开发 作者: 2024-08-22 02:05:01
转载请注明出处:葡萄城官网,葡萄城为开发者提供专业的开发工具、解决方案和服务,赋能开发者。原文出处:https://tutorialzine.com/2017/08/12-terminal-comma
# 获取一个URL的HTTP HEADER
curl -I http://google.com
HTTP/1.1 302 Found
Cache-Control: private
Content-Type: text/html; charset=UTF-8
Referrer-Policy: no-referrer
Location: http://www.google.com/?gfe_rd=cr&ei=0fCKWe6HCZTd8AfCoIWYBQ
Content-Length: 258
Date: Wed,09 Aug 2017 11:24:01 GMT

# 向远程API发出GET请求
curl http://numbersapi.com/random/trivia
29 is the number of days it takes Saturn to orbit the Sun.
tree
.
├── css
│   ├── bootstrap.css
│   ├── bootstrap.min.css
├── fonts
│   ├── glyphicons-halflings-regular.eot
│   ├── glyphicons-halflings-regular.svg
│   ├── glyphicons-halflings-regular.ttf
│   ├── glyphicons-halflings-regular.woff
│   └── glyphicons-halflings-regular.woff2
└── js
    ├── bootstrap.js
    └── bootstrap.min.js
tree -P '*.min.*'
.
├── css
│   ├── bootstrap.min.css
├── fonts
└── js
    └── bootstrap.min.js
# 运行此命令将显示当前目录中每个文件夹的空间占用情况。
# 使用 -h 命令选项将使报告更易读。
# -s 可防止递归并显示文件夹的总大小。
# 通配符(*),将在当前目录中的所有文件及文件夹上显示所有信息

du -sh *

1.2G    Desktop
4.0K    Documents
40G     Downloads
4.0K    Music
4.9M    Pictures
844K    Public
4.0K    Templates
6.9M    Videos
tar -cf archive.tar file1 file2 file3
tar -xf archive.tar
# 创建 gzip 压缩包.
tar -czf file.tar.gz inputfile1 inputfile2

# 解压 .gz 压缩包.
tar -xzf file.tar.gz
md5sum ubuntu-16.04.3-desktop-amd64.iso 

0d9fe8e1ea408a5895cbbe3431989295  ubuntu-16.04.3-desktop-amd64.iso
~/Desktop/Scripts/git-scripts/git-cleanup
sudo ln -s ~/Desktop/Scripts/git-scripts/git-cleanup /usr/local/bin/
git-cleanup
ssh username@remote_host
ssh username@remote_host ls /var/www

some-website.com
some-other-website.com
// 搜索今天的日期(格式为yyyy-mm-dd)并将结果写入新文件。 
grep "$(date +"%Y-%m-%d")" all-errors-ever.log > today-errors.log
# 创建用于启动本地Web服务器的别名。
alias server="python -m SimpleHTTPServer 9000"

# 不是键入整个命令只需使用别名。
server 

Serving HTTP on 0.0.0.0 port 9000 ...
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_66415.html