diff --git a/getgraph b/getgraph index f242708..cc756b6 100755 --- a/getgraph +++ b/getgraph @@ -1,3 +1,11 @@ cp ~/Downloads/*.graphml . -rm ~/Downloads/*.graphml +if [ $? == 0 ] +then + echo "successfully moved *.graphml files in current directory" +fi +rm ~/Downloads/*.graphml +if [ $? == 0 ] +then + echo "successfully deleted from downloads" +fi