-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorite_commands.xml
30 lines (30 loc) · 1.05 KB
/
favorite_commands.xml
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
<commands>
<category name="System">
<command>
<name>uname -a</name>
<description>Show system information</description>
</command>
<command>
<name>df -h</name>
<description>Free Disk Space</description>
</command>
<command>
<name>uptime</name>
<description>Uptime</description>
</command>
</category>
<category name="Network">
<command>
<name>nginx -t</name>
<description>Check nginx config</description>
</command>
<command>
<name>nginx -s reload</name>
<description>Reload nginx config</description>
</command>
<command>
<name><![CDATA[nginx -T | grep "server_name " | sed 's/.*server_name \(.*\);/\1/' | sed 's/ /\n/g' | tr -d ' ' | sed '/\.\*/s/\.\*/\n&/' | grep -v '^*.' | sed 's/^www\.//' | sort -u | grep -v 'nginx' | grep -v '^$']]></name>
<description>Websites list</description>
</command>
</category>
</commands>