Tag: commnad
Remove Empty Lines and Comments
February 12, 2008
Remove comments and blank lines from example.pl sed ‘/ *#/d; /^$/d’ example.pl
Get Result of Command using Python in Linux
October 7, 2007
Execute a command and get its results using python in Linux import commands result = commands.getoutput(“ls”)
Recent Comments