Show full path in Sublime Text

Writing by on Saturday, 28 of February , 2015 at 6:23 pm

If you want to see the full path to the currently open file on the title bar add “show_full_path”: true to the Settings JSON.

Sublime Text -> Preferences -> Settings – User
“show_full_path”: true

Leave a comment

Category: Tips and Tricks

Find the largest files or directories in Linux

Writing by on Wednesday, 25 of February , 2015 at 8:32 am

Running out of space? To find the biggest files or folders in your Linux environment in descending order, switch to the root folder and then run the du command.

cd /
du -Sh | sort -rh | head -n 20

Mac equivalent is something like

find . -type f -print0 | xargs -0 ls -l | sort -k5,5rn

Leave a comment

Category: Linux

Shivdev Kalambi's Blog

Shivdev Kalambi is a Software Development Manager, previously a Principal Software Engineer at ArcSight/HP. With over 16 years' experience in software development, he's worked on several technologies and played different roles and contributed to all phases of projects. Non-tech activies include Ping-pong, Rock Climbing and Yoga at PG, Golf, Skiing, Swimming & a beer enthusiast.