mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
Non standard cut options
Some cut versions don't have `--delimiter` or `--fields` but use the standard options `-d` and `-f`
This commit is contained in:
parent
8bcb5e4ed7
commit
12be83562d
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
function __fish_print_svn_rev --description 'Print svn revisions'
|
||||
svn info | grep "Last Changed Rev" | cut --delimiter " " --fields 4
|
||||
svn info | grep "Last Changed Rev" | cut -d " " -f 4
|
||||
echo \{\tRevision at start of the date
|
||||
echo HEAD\tLatest in repository
|
||||
echo BASE\tBase rev of item\'s working copy
|
||||
|
|
Loading…
Reference in a new issue