├── .travis.yml ├── LICENSE ├── README.md ├── completions └── upto.fish ├── functions └── upto.fish ├── man └── man1 │ └── upto.md └── test └── upto.fish /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/upto/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/upto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/upto/HEAD/README.md -------------------------------------------------------------------------------- /completions/upto.fish: -------------------------------------------------------------------------------- 1 | complete -c upto -a '(pwd | tr "/" "\n")' -f 2 | -------------------------------------------------------------------------------- /functions/upto.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/upto/HEAD/functions/upto.fish -------------------------------------------------------------------------------- /man/man1/upto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/upto/HEAD/man/man1/upto.md -------------------------------------------------------------------------------- /test/upto.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/upto/HEAD/test/upto.fish --------------------------------------------------------------------------------