Skip to content
Snippets Groups Projects
Commit 990673ab authored by Riccardo Maria Bianchi's avatar Riccardo Maria Bianchi :sunny:
Browse files

Comment out debug printouts

parent d45965fc
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
#
# Script to construct the command that launches Athena on vp1.py,
# with all the appropriate options (in the -c flag).
#
......@@ -22,9 +26,10 @@
#fixme/todo: option to start cruise mode (event/second)
#fixme/todo: MULTINP_CPY should not be allowed to exist beforehand!
# For DEBUG only
# Prefix all output from this script with '[vp1]'
exec > >(trap "" INT TERM; sed 's/^/[vp1] /')
exec 2> >(trap "" INT TERM; sed 's/^/[vp1\/stderr] /' >&2)
#exec > >(trap "" INT TERM; sed 's/^/[vp1] /')
#exec 2> >(trap "" INT TERM; sed 's/^/[vp1\/stderr] /' >&2)
### TERMINAL COLORS ###
......
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