mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-05 17:48:45 +00:00
10 lines
384 B
Fish
10 lines
384 B
Fish
|
function fish_nth_token --description 'Prints the Nth token (ignoring command and switches/flags)' --argument-names n
|
||
|
set -l tokens (commandline -po | string replace -r --filter '^([^-].*)' '$1')
|
||
|
# Increment $n by one to account for ignoring the command
|
||
|
if test (count $tokens) -ge (math "$n" + 1)
|
||
|
echo $tokens[(math $n + 1)]
|
||
|
else
|
||
|
return 1
|
||
|
end
|
||
|
end
|