A few days ago was “the eclipse” a nice and incredible moment here. If you have the opportunity to watch one it is completely worthwhile.


A few days ago was “the eclipse” a nice and incredible moment here. If you have the opportunity to watch one it is completely worthwhile.


This is a basic command in unix systems. It allows us to “export” the environment variables.
The term “exports” basically means that we can set a group of vars for our session, making them available for the rest of our programs (and any spawned child processes). This includes things like like paths, programs settings, environment specific variables, etc.
Examples:
export -p : Will show the variables in the actual session
export : will show all the exported variables
export name=value : will export a variable named “name”. To read the value you can do:
echo $name
As always read the docs for more info
This is an impressive cli command. It does a simple task: show a file content progressively, that is to say, one page at a time. If the file is big this utility is faster than more because it does not have to load the entire file at once, just the first page. You can acces the rest of the document page by page with its own pager system, as if it was a text reader like vim or emacs. The basic sintax is :
less "filename"
You can do a ton of things with this utility. The man documentation shows hundreds of options and posibilities. For instance:
less "filename" -p "text to start"
command will allow you to open file “filename” and start showing the content when the text “text to start” is found.
As always, check the man page for more information and options, but be aware that this utility is huge in terms of posibilities.
This text is a litle rant about e-readers. First, I would like to state the pros:
And now the cons:
I really like e-readers, but I am not willing to pay ridiculous amounts of money for devices that only last a few years and are unserviceable. For now I will return to the cheapest pen and paper for my notes and carry my books around again.