Forrest logo
back to the swipl tool

swipl:tldr:c740e

swipl: Execute a command without showing any output.
$ swipl --quiet -t "${command}"
try on your machine

This command is used to launch the SWI-Prolog interpreter with specific options.

  • swipl is the command to run SWI-Prolog interpreter.
  • --quiet is an option that runs SWI-Prolog in quiet mode, which suppresses printing of the initial welcome message and information.
  • -t "${command}" is another option that allows executing a Prolog goal or query specified by ${command}. "${command}" is a placeholder that can be replaced with an actual Prolog goal or query.

So, when you run this command, it will launch the SWI-Prolog interpreter in quiet mode and execute the Prolog goal or query specified by ${command}.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the swipl tool