Skip to content

Instantly share code, notes, and snippets.

@Biswajitghosh98
Created August 2, 2018 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Biswajitghosh98/b1387a964d0b20fd52e644372646afdc to your computer and use it in GitHub Desktop.
Save Biswajitghosh98/b1387a964d0b20fd52e644372646afdc to your computer and use it in GitHub Desktop.
A simple bash script to move all the files from one location to the other
#!/bin/sh
read location1
read location2
mv $location1/* $location2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment