Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mkexp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esmenv
mkexp
Commits
456b3254
Commit
456b3254
authored
8 years ago
by
Karl-Hermann Wieners
Browse files
Options
Downloads
Patches
Plain Diff
Reverted erroneous commit on tag (r415)
parent
ec79c1cc
No related branches found
Branches containing commit
Tags
mkexp-0.3.2
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cpexp
+0
-31
0 additions, 31 deletions
cpexp
cppath
+0
-81
0 additions, 81 deletions
cppath
with
0 additions
and
112 deletions
cpexp
deleted
100755 → 0
+
0
−
31
View file @
ec79c1cc
#! /bin/sh
#
# Compare experiment setups trying to identify file pairs.
#
# $Id$
#
PROGRAM
=
`
basename
$0
`
BINDIR
=
`
dirname
$0
`
PATH
=
"
$BINDIR
:
$PATH
"
die
()
{
echo
"
$@
"
>
&2
exit
1
}
[
"x
$2
"
=
x
]
&&
die
"Oops: invalid number of parameters
Usage:
$PROGRAM
config_a new_exp_id [key=value...]"
CONFIG_A
=
$1
EXP_B
=
$2
shift
;
shift
eval
`
getexp
-v
"
$CONFIG_A
"
"
$@
"
||
echo
\;
exit
$?
`
EXP_A
=
$EXP_ID
set
$SCRIPT_DIR
$WORK_DIR
$RESTART_DIR
$DATA_DIR
$LOG_DIR
$MON_DIR
/
$EXP_A
### $MON_DIR/index.html
for
PATH_A
do
cppath
"
$EXP_A
"
"
$EXP_B
"
"
$PATH_A
"
done
This diff is collapsed.
Click to expand it.
cppath
deleted
100755 → 0
+
0
−
81
View file @
ec79c1cc
#! /bin/sh -e
#
# Compare experiment setups trying to identify file pairs.
#
# $Id$
#
PROGRAM
=
`
basename
$0
`
die
()
{
echo
"
$@
"
>
&2
exit
1
}
cp_exp_file
()
{
exp_a
=
$1
exp_b
=
$2
file_a
=
$3
file_b
=
$4
[
-e
"
$file_b
"
]
&&
die
"Oops: cannot overwrite existing file '
$file_b
'"
case
$(
file
-bi
"
$file_a
"
)
in
text/
*
)
trap
'rm -f $temp_b'
0
temp_b
=
`
mktemp
`
sed
"s,
\<
$exp_a
\>
,
$exp_b
,g;s,
\<
${
exp_a
}
_,
${
exp_b
}
_,g"
"
$file_a
"
>
$temp_b
mv
$temp_b
"
$file_b
"
chmod
--reference
=
"
$file_a
"
"
$file_b
"
echo
"
$file_a
x>
$file_b
"
;;
*
)
ln
-v
"
$file_a
"
"
$file_b
"
;;
esac
}
[
"x
$3
"
=
x
]
&&
die
"Oops: invalid number of parameters
Usage:
$PROGRAM
experiment_id_a experiment_id_b path_to_a [path_to_b]"
unset
CDPATH
EXP_A
=
$1
EXP_B
=
$2
PATH_A
=
$3
# If path to b is not set or empty, use path to a as template
PATH_B
=
${
4
:-
`
echo
"
$PATH_A
"
|
sed
"s,
$EXP_A
,
$EXP_B
,g"
`
}
if
[
-d
"
$PATH_A
"
]
then
:
else
FIND_A
=
"-name
$(
basename
$PATH_A
)
"
PATH_A
=
$(
dirname
$PATH_A
)
FIND_B
=
$(
basename
$PATH_B
)
PATH_B
=
$(
dirname
$PATH_B
)
fi
mkdir
-vp
"
$PATH_B
"
for
DIR_A
in
$(
{
(
cd
"
$PATH_A
"
&&
find
.
-type
d
!
-name
.
$FIND_A
)
}
|
sed
's,^\./,,'
)
do
DIR_B
=
`
echo
"
$DIR_A
"
|
sed
"s,
$EXP_A
,
$EXP_B
,g"
`
mkdir
-v
"
$PATH_B
"
/
"
$DIR_B
"
done
for
FILE_A
in
$(
{
(
cd
"
$PATH_A
"
&&
find
.
!
-type
d
$FIND_A
)
}
|
sed
's,^\./,,'
)
do
FILE_B
=
${
FIND_B
:-
$(
echo
"
$FILE_A
"
|
sed
"s,
$EXP_A
,
$EXP_B
,g"
)
}
cp_exp_file
"
$EXP_A
"
"
$EXP_B
"
"
$PATH_A
/
$FILE_A
"
"
$PATH_B
/
$FILE_B
"
||
STATUS
=
$?
done
exit
$STATUS
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment