Monday, July 21, 2014

Linux Tips

Linux Tips!

How could I not ever noticed this! Before this, I was manually installing all the dependencies, grrrr x-(
You can fix install dependencies with the following command:

sudo apt-get -f install

Did you ever need to sort by directory size? Use this!

                                 du -h --max-depth=1 . | sort -n -r

Use -- for grep to search symbols!
                grep -- "-C" abc.txt

No comments:

Post a Comment