Wednesday, May 27th, 2009 01:46 AM
This is the command used to post a new task to the nexty GTD tool.
curl --basic --user "binnyva:password" --cookie-jar /tmp/nexty-cookies.txt --data-ascii "task=`echo $@|tr ' ' '+'`&layout=cli" "http://nexty.org/tasks/add.php"
No Comments »
Saturday, May 2nd, 2009 08:17 PM
Post a status update to identi.ca using just curl
curl --basic --user binnyva:PASSWORD --data-ascii "status=The new status goes here" http://identi.ca/api/statuses/update.xml
No Comments »
Tuesday, January 15th, 2008 11:18 PM
You can create a directory tree using just one command in Linux
mkdir -p /tmp/dir1/dir2
No Comments »
Friday, January 11th, 2008 10:58 PM
Show files and directory containing numbers
ls *[0-9]*
No Comments »
Friday, January 4th, 2008 11:19 PM
I run this command when I go for lunch or something - these commands take a while to run.
sudo /bin/bash /usr/sbin/makewhatis -w; sudo /usr/bin/updatedb; sudo /home/binnyva/Software/System/chkrootkit-0.47/chkrootkit
No Comments »
Thursday, January 3rd, 2008 11:06 PM
This command shows the kernel modules that are currently loaded.
# lsmod
Module Size Used by
vboxdrv 55088 0
autofs4 20421 2
ipt_MASQUERADE 6721 1
iptable_nat 9669 1
nf_nat 18669 2 ipt_MASQUERADE,iptable_nat
nf_conntrack_ipv4 11717 2 iptable_nat
nf_conntrack 51977 4 ipt_MASQUERADE,iptable_nat,nf_nat,nf_conntrack_ipv4
....
No Comments »
Sunday, December 30th, 2007 12:02 AM
du shows the ‘disk usage’ - the space taken up by the files and folders in the current directory.
du -bh | more
No Comments »
Saturday, December 29th, 2007 11:53 AM
free gives the Memory info (in kilobytes).
free
#Output
total used free shared buffers cached
Mem: 2075000 667508 1407492 0 25988 352076
-/+ buffers/cache: 289444 1785556
Swap: 979924 0 979924
[tags][/tags]
No Comments »
Friday, December 28th, 2007 12:16 AM
The last command shows a history of logins…
last
No Comments »
Tuesday, December 25th, 2007 11:25 PM
System info about a user. Try: finger root. An admin needs it all the time
finger user_name
#finger root
Login: root Name: root
Directory: /root Shell: /bin/bash
Last login Tue Nov 27 20:19 (IST) on tty1
No mail.
No Plan.
No Comments »