Skip to content
Snippets Groups Projects
Commit cd39986e authored by Simon McVittie's avatar Simon McVittie
Browse files

wrap: Print wrapped command

parent 90518d76
No related branches found
No related tags found
No related merge requests found
......@@ -257,6 +257,10 @@ if [ -n "$verbose" ]; then
printf '\tPhysical: %q\n' "$(pwd -P)" >&2
echo "Environment variables:" >&2
env | sed -e 's/^/\t/' >&2
echo "Wrapped command:" >&2
for arg in "$@"; do
printf '\t%q\n' "$arg" >&2
done
fi
if [ -n "$xterm" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment