Now you can have two files, say, A.txt and B.txt:<p>A.txt:<p><pre><code> = Weekly
- 100 Groceries
- 50 Gasoline
</code></pre>
B.txt:<p><pre><code> + 1000 Salary
- 500 Random
- Weekly x 4
</code></pre>
Then run:<p><pre><code> pbudget A.txt B.txt
</code></pre>
Result:<p><pre><code> = 150 Weekly
- 100 Groceries
- 50 Gasoline
+ 1000 Salary
- 500 Random
- 150 Weekly x 4
= -100
</code></pre>
Not only will B see the Weekly definition in the other file, but the x multiplier will work too.<p>npm install pbudget -g<p><a href="https://galvez.github.io/plainbudget/" rel="nofollow">https://galvez.github.io/plainbudget/</a>