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 gimpbecomes:
Code:
sudo apt-get update; sudo apt-get install gimpWhich 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
Download your free copy of Linux Lite today.
Jerry Bezencon
Linux Lite Creator
"Do not correct a fool, or he will hate you; correct a wise man and he will appreciate you."
![[Image: X5qGkCg.png]](https://imgur.com/X5qGkCg.png)
Jerry Bezencon
Linux Lite Creator
"Do not correct a fool, or he will hate you; correct a wise man and he will appreciate you."
![[Image: X5qGkCg.png]](https://imgur.com/X5qGkCg.png)

