Merge lp:~clicompanion-devs/clicompanion/fix-638243 into lp:clicompanion
Proposed by
Duane Hinnen
Status: | Merged |
---|---|
Merge reported by: | Duane Hinnen |
Merged at revision: | not available |
Proposed branch: | lp:~clicompanion-devs/clicompanion/fix-638243 |
Merge into: | lp:clicompanion |
Diff against target: |
237 lines (+87/-32) 2 files modified
.clicompanion (+23/-23) clicompanion.py (+64/-9) |
To merge this branch: | bzr merge lp:~clicompanion-devs/clicompanion/fix-638243 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Duane Hinnen | Approve | ||
Review via email: mp+35688@code.launchpad.net |
Description of the change
I have made it where the user can put the symbol @ where user arguments are required.
EX:
cat @ @ | sort | uniq > @
Then the code replaces those with the appropriate {0[0]} {0[1]} {0[2]} etc.
EX
cat {0[0]} {0[1]} | sort | uniq > {0[2]}
I did this because I thought typing the actual {0[0]} would be confusing to users. I picked @ because I thought it would be the least likely to appear in a command. Anyone have a better suggestion?
To post a comment you must log in.