
fish
List of commands for fish:
-
fish:tldr:07150 fish: Start an interactive shell session without loading startup configs.$ fish --no-configtry on your machineexplain this command
-
fish:tldr:0fa00 fish: Start an interactive shell session in private mode, where the shell does not access old history or save new history.$ fish --privatetry on your machineexplain this command
-
fish:tldr:10281 fish: Execute specific commands.$ fish --command "${echo 'fish is executed'}"try on your machineexplain this command
-
fish:tldr:31393 fish: Define and export an environmental variable that persists across shell restarts (builtin).$ set --universal --export ${variable_name} ${variable_value}try on your machineexplain this command
-
fish:tldr:7d1e2 fish: Execute a specific script.$ fish ${path-to-script-fish}try on your machineexplain this command
-
fish:tldr:83e4a fish: Start an interactive shell session.$ fishtry on your machineexplain this command
-
fish:tldr:89e7c fish: Check a specific script for syntax errors.$ fish --no-execute ${path-to-script-fish}try on your machineexplain this command
-
fish:tldr:9bf77 fish: Execute specific commands from `stdin`.$ ${echo "echo 'fish is executed'"} | fishtry on your machineexplain this command