forked from Vonng/Configuration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinux.sh
More file actions
23 lines (20 loc) · 916 Bytes
/
Copy pathlinux.sh
File metadata and controls
23 lines (20 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env bash
#==============================================================#
# Author: Vonng(fengruohang@outlook.com) #
# Desc : Linux specific bash util #
# Dep : None #
#==============================================================#
# module name
declare -g -r __MODULE_DARWIN="darwin"
#==============================================================#
# Systemctl #
#==============================================================#
alias sc='systemctl'
alias scr='systemctl daemon-reload'
alias scu='systemctl --user'
alias scur='systemctl --user daemon-reload'
alias sce='systemctl stop'
alias scue='systemctl --user stop'
alias scs='systemctl start'
alias scus='systemctl --user start'
#==============================================================#