Skip to content

Response file

Konstantin Nosov edited this page Apr 16, 2019 · 3 revisions

Purpose

Response files are widely used in command line toolchains. This allows to specify application's command line in a file rather than listing options as command line parameters.

Usage

To use response file, simply use this the following command line format:

umodel @<filename>

File format

You may list options separated with spaces or newlines. Empty lines are ignored. Parameters could be enclosed in double quotes. It is possible to use comments (for example to disable part of command line), use shell-style comments starting with '#' or ';'.

Example

# ShooterGame
"C:/Unreal/ShooterGame/WindowsNoEditor/ShooterGame/Content/Paks" -game=ue4.22

# Disabled block
# Fortnite
# -path=C:/UnrealEngine/Fortnite/FortniteGame/Content/Paks -game=ue4.22 -aes=...

# Disabled block
# Paragon
# C:/UnrealEngine/Paragon/OrionGame/Content/Paks -game=paragon
Clone this wiki locally