From existing project files 1- On your local project folder ex: open a terminal
$ git init
$ git add --all # in case you wish to add all the files to stage Or you can selectively add files.
$ git commit -m "Initial comment" # comment
#!/bin/bash | |
# Apache License 2.0 | |
# Copyright (c) 2019, Abdalrahman M. Amer. | |
echo " R O S M E L O D I C" | |
echo "" | |
echo "Starting ROS installing script ..." | |
echo "" | |
echo "[Note] Target OS version >>> Ubuntu 18.04.x (Bionic Beaver)" |
from io import BytesIO | |
from base64 import b64encode | |
import pyscreenshot as ImageGrab | |
buffer = BytesIO() | |
im=ImageGrab.grab() | |
im.save(buffer, format='PNG') | |
im.close() |