Got to use the command line thingies in linux more often
Wednesday, October 24th, 2007The absolutely best advantage of using a Linux/*nix based OS is the shell applications and functions. I’m quite far from good at utilising it. I guess it mostly depends on that you need to use it often to remember all the flags and things. Still usefull and quick when you know your way around. Take for instance this simple line of command:
find . -cmin -20 -ls
This list all files in the current folder that are modified within the last 20 minutes. Nifty and quite basic. Your number one resource to getting to know the commands is the man command (man like in manual)
man find
And you know how you do it..