Posts Tagged With: commnad

Remove Empty Lines and Comments

Tagged with: , , , ,

Remove comments and blank lines from example.pl


sed '/ *#/d; /^$/d' example.pl
No Comments »

Get Result of Command using Python in Linux

Tagged with: , , , , , ,

Execute a command and get its results using python in Linux


import commands

result = commands.getoutput("ls")
No Comments »