forked from joehannes-os-zz/bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp_status_codes.zsh
60 lines (60 loc) · 3.87 KB
/
http_status_codes.zsh
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
52
53
54
55
56
57
58
59
60
alias "100"="echo 'Continue' \[RFC7231\]"
alias "101"="echo 'Switching Protocols' \[RFC7231\]"
alias "102"="echo 'Processing' \[RFC2518\]"
alias "200"="echo 'OK' \[RFC7231\]"
alias "201"="echo 'Created' \[RFC7231\]"
alias "202"="echo 'Accepted' \[RFC7231\]"
alias "203"="echo 'Non-Authoritative Information' \[RFC7231\]"
alias "204"="echo 'No Content' \[RFC7231\]"
alias "205"="echo 'Reset Content' \[RFC7231\]"
alias "206"="echo 'Partial Content' \[RFC7233\]"
alias "207"="echo 'Multi-Status' \[RFC4918\]"
alias "208"="echo 'Already Reported' \[RFC5842\]"
alias "226"="echo 'IM Used' \[RFC3229\]"
alias "300"="echo 'Multiple Choices' \[RFC7231\]"
alias "301"="echo 'Moved Permanently' \[RFC7231\]"
alias "302"="echo 'Found' \[RFC7231\]"
alias "303"="echo 'See Other' \[RFC7231\]"
alias "304"="echo 'Not Modified' \[RFC7232\]"
alias "305"="echo 'Use Proxy' \[RFC7231\]"
alias "306"="echo '(Unused)' \[RFC7231\]"
alias "307"="echo 'Temporary Redirect' \[RFC7231\]"
alias "308"="echo 'Permanent Redirect' \[RFC7538\]"
alias "400"="echo 'Bad Request' \[RFC7231\]"
alias "401"="echo 'Unauthorized' \[RFC7235\]"
alias "402"="echo 'Payment Required' \[RFC7231\]"
alias "403"="echo 'Forbidden' \[RFC7231\]"
alias "404"="echo 'Not Found' \[RFC7231\]"
alias "405"="echo 'Method Not Allowed' \[RFC7231\]"
alias "406"="echo 'Not Acceptable' \[RFC7231\]"
alias "407"="echo 'Proxy Authentication Required' \[RFC7235\]"
alias "408"="echo 'Request Timeout' \[RFC7231\]"
alias "409"="echo 'Conflict' \[RFC7231\]"
alias "410"="echo 'Gone' \[RFC7231\]"
alias "411"="echo 'Length Required' \[RFC7231\]"
alias "412"="echo 'Precondition Failed' \[RFC7232\]"
alias "413"="echo 'Payload Too Large' \[RFC7231\]"
alias "414"="echo 'URI Too Long' \[RFC7231\]"
alias "415"="echo 'Unsupported Media Type' \[RFC7231\]"
alias "416"="echo 'Range Not Satisfiable' \[RFC7233\]"
alias "417"="echo 'Expectation Failed' \[RFC7231\]"
alias "421"="echo 'Misdirected Request' \[RFC7540\]"
alias "422"="echo 'Unprocessable Entity' \[RFC4918\]"
alias "423"="echo 'Locked' \[RFC4918\]"
alias "424"="echo 'Failed Dependency' \[RFC4918\]"
alias "426"="echo 'Upgrade Required' \[RFC7231\]"
alias "428"="echo 'Precondition Required' \[RFC6585\]"
alias "429"="echo 'Too Many Requests' \[RFC6585\]"
alias "431"="echo 'Request Header Fields Too Large' \[RFC6585\]"
alias "451"="echo 'Unavailable for Legal Reasons' \[RFC7725\]"
alias "500"="echo 'Internal Server Error' \[RFC7231\]"
alias "501"="echo 'Not Implemented' \[RFC7231\]"
alias "502"="echo 'Bad Gateway' \[RFC7231\]"
alias "503"="echo 'Service Unavailable' \[RFC7231\]"
alias "504"="echo 'Gateway Timeout' \[RFC7231\]"
alias "505"="echo 'HTTP Version Not Supported' \[RFC7231\]"
alias "506"="echo 'Variant Also Negotiates' \[RFC2295\]"
alias "507"="echo 'Insufficient Storage' \[RFC4918\]"
alias "508"="echo 'Loop Detected' \[RFC5842\]"
alias "510"="echo 'Not Extended' \[RFC2774\]"
alias "511"="echo 'Network Authentication Required' \[RFC6585\]"