Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. env.Command('foo.out', 'foo.in', "dateVar=$(date +%F-%k-%M); sed -i "s/.txt/.txt?v=$dateVar/g" example.properties");
  2.  
  3. env.Command('foo.out', 'foo.in',
  4. 'dateVar=$$(date +%F-%k-%M); '
  5. 'sed -i "s/.txt/.txt?v=$$dateVar/g" example.properties');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement