fish_is_root_user - check if the current user is root

概要

fish_is_root_user

描述

fish_is_root_user will check if the current user is root. It can be useful for the prompt to display something different if the user is root, for example.

範例

A simple example:

function example --description 'Just an example'
    if fish_is_root_user
        do_something_different
    end
end