Switch to unified view

a/src/internfile/internfile.cpp b/src/internfile/internfile.cpp
...
...
141
    string cmd = cmdv.front();
141
    string cmd = cmdv.front();
142
142
143
    // Substitute file name and temp dir in command elements
143
    // Substitute file name and temp dir in command elements
144
    list<string>::const_iterator it = cmdv.begin();
144
    list<string>::const_iterator it = cmdv.begin();
145
    ++it;
145
    ++it;
146
    list<string> args;
146
    vector<string> args;
147
    map<char, string> subs;
147
    map<char, string> subs;
148
    subs['f'] = ifn;
148
    subs['f'] = ifn;
149
    subs['t'] = tdir.dirname();
149
    subs['t'] = tdir.dirname();
150
    for (; it != cmdv.end(); it++) {
150
    for (; it != cmdv.end(); it++) {
151
    string ns;
151
    string ns;