DEV Community

Mike Whitaker
Mike Whitaker

Posted on • Updated on

 

Shell command options you didn't know you needed #1

(The first in an occasional series.)

mv -t <target> <files>

Handy for throwing at xargs, e.g.:

find . -name '*.png' | xargs mv -t ~/images/

Annoyingly, not available on MacOS.

Top comments (0)

Timeless DEV post...

Git Concepts I Wish I Knew Years Ago

The most used technology by developers is not Javascript.

It's not Python or HTML.

It hardly even gets mentioned in interviews or listed as a pre-requisite for jobs.

I'm talking about Git and version control of course.

One does not simply learn git