fish_functions/start_local_tailscaled.fish
- 323 bytes
- View raw
1function start_local_tailscaled --description "Run a local instance of the tailscaled daemon"
2 # Save the node name to a global variable, then set it in the tab title.
3 set -g node_name $argv[1]
4 function fish_title
5 echo $node_name
6 end
8 cd ~/repos/scripts
9 bash tailscale/start_local_tailscaled.sh $argv[1]
10end