Skip to content

Instantly share code, notes, and snippets.

@ixtiyoruz
Last active April 21, 2021 05:52
Show Gist options
  • Save ixtiyoruz/65f59b364d90bda17293833838427292 to your computer and use it in GitHub Desktop.
Save ixtiyoruz/65f59b364d90bda17293833838427292 to your computer and use it in GitHub Desktop.
linux commands
@ixtiyoruz
Copy link
Author

in order to change default python to python 2

sudo update-alternatives --install /usr/bin/python python \
/usr/bin/python2.7 2

python3:

sudo update-alternatives --install /usr/bin/python python \
/usr/bin/python3.5 3

if your python path located in /usr/local/bin change the commands accordingly.

@ixtiyoruz
Copy link
Author

to see the size of object in readable format:

du -h mybag_2021-04-21-14-31-14.bag

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment