In bash I am considering the log:
bash
atop_20210228
Is there a way to:
mv atop_20210228 $FIRSTARGUMENT.bkup
So that I would be moving atop_20210228 but just appending .bkup to the end?
.bkup
mv atop_20210228{,.bkup}
mv atop_20210228{,.bkup}
– Kahn Mar 09 '21 at 18:09