Skip to content

Instantly share code, notes, and snippets.

View Biswajitghosh98's full-sized avatar
🎯
Focusing

Biswajit Ghosh Biswajitghosh98

🎯
Focusing
View GitHub Profile
@Biswajitghosh98
Biswajitghosh98 / move.sh
Created August 2, 2018 08:25
A simple bash script to move all the files from one location to the other
#!/bin/sh
read location1
read location2
mv $location1/* $location2