mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-18 01:29:06 +00:00
8 lines
141 B
Bash
8 lines
141 B
Bash
function ssh-server-start() {
|
|
sudo systemsetup -setremotelogin on
|
|
}
|
|
|
|
function ssh-server-stop() {
|
|
sudo systemsetup -setremotelogin off
|
|
}
|