Heray-Was-Here
Server : Apache
System : Linux vps43555.mylogin.co 3.10.0-1160.53.1.vz7.185.3 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
User : redsea ( 60651)
PHP Version : 7.4.32
Disable Function : NONE
Directory :  /usr/share/fish/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/fish/functions/suspend.fish
# If the user hasn't set it, make sure our test level has a value
if not set -q suspend_minimum_SHLVL
    set -g suspend_minimum_SHLVL 3
end


function suspend -d "Suspend the current shell."
    if begin contains -- $argv --force
             or not status --is-interactive
             or begin test $SHLVL -ge $suspend_minimum_SHLVL
                      and not status --is-login
                end
       end
       kill -STOP %self
    else
       echo 2>&1 Cannot suspend login shell or SHLVL to low, use --force to force.
    end
end

Hry