mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-31 04:46:49 +00:00
20 lines
436 B
Fish
20 lines
436 B
Fish
# @halostatue/fish-macos/functions/__macos_mac_flushdns.fish:v7.0.0
|
|
|
|
function __macos_mac_flushdns
|
|
argparse --name 'mac flushdns' h/help -- $argv
|
|
or return 1
|
|
|
|
if set --query _flag_help
|
|
echo 'Usage: mac flushdns [options]
|
|
|
|
Flushes the DNS cache. Requires sudo.
|
|
|
|
Options:
|
|
-h, --help Show this help'
|
|
return 0
|
|
end
|
|
|
|
sudo dscacheutil -flushcache
|
|
and sudo killall -HUP mDNSResponder
|
|
end
|