1
0
mirror of https://github.com/mbollmann/fishpkgs.git synced 2025-06-13 12:53:58 +00:00
mbollmann_fishpkgs/functions/last_job_id.fish

4 lines
111 B
Fish
Raw Normal View History

function last_job_id
jobs $argv | command awk '/^[0-9]+\t/ { print status = $1 } END { exit !status }'
end