all repos

dotfiles @ 7bea68f38a462e5706df4c340f6f98648cff6351

my dotfiles

config/fish/functions/sortw.fish (view raw)

1
2
3
4
5
6
7
8
function sortw -d "Wrapper around sort to save file after sorting"
 if test (count $argv) -eq 0
    echo "No file provided"
    return 1
  else
    command sort $argv[1] -o $argv[1]
  end
end