12-08-2017, 01:06 AM
There will be a few bumps along the road for people who are used to the Linux cli. Example - instead of using && to join 2 or more commands together, you would use ;
eg.
becomes:
Which is more in line with what programmers use, so if at some point you decide to do a little scripting, you'll already have the habit.
Sent from my Mobile phone using Tapatalk
eg.
Code:
sudo apt-get update && sudo apt-get install gimp
becomes:
Code:
sudo apt-get update; sudo apt-get install gimp
Which is more in line with what programmers use, so if at some point you decide to do a little scripting, you'll already have the habit.
Sent from my Mobile phone using Tapatalk