Wednesday, December 11, 2019

Installing nodejs 13 on linux mint



Installing nodejs 13 on linux mint

by default the  sudo apt-get install -y nodejs will install v8.10.0
in order to install version 13 you need to add the v13 repository to the update manager


In the terminal type:
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -

then run:
sudo apt-get install -y nodejs



That's it,



linux bulk prefix filenames

  In order to bulk add prefix to filenames  in a directory run the following comnmand for f in * ; do mv -- "$f" "2018-05-24_...