Various scripts that I maintain
utils scripts
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ln-bin: don't overwrite existing files

+1 -1
+1 -1
scripts/ln-bin.nu
··· 5 5 # Quickly symlink executable files to `~/.local/bin/` 6 6 def main [bin: path, name?: string] { 7 7 let name = $name | default ($bin | path parse | get stem) 8 - ln -sf ($bin | path expand) $"($env.HOME)/.local/bin/($name)" 8 + ln -s ($bin | path expand) $"($env.HOME)/.local/bin/($name)" 9 9 }