Skip to content Skip to sidebar Skip to footer
Showing posts with the label Unix

Python - How To Check If A File Is Used By Another Application?

I want to open a file which is periodically written to by another application. This application can… Read more Python - How To Check If A File Is Used By Another Application?

Howto Do Python Command-line Autocompletion But Not Only At The Beginning Of A String

Python, through it's readline bindings allows for great command-line autocompletion (as describ… Read more Howto Do Python Command-line Autocompletion But Not Only At The Beginning Of A String

Is There A Built-in Python Analog To Unix 'wc' For Sniffing A File?

Everyone's done this--from the shell, you need some details about a text file (more than just l… Read more Is There A Built-in Python Analog To Unix 'wc' For Sniffing A File?

What Is Python's Equivalent To 'ulimit'?

I'm trying to implement a check on system resources for the current shell (basically everything… Read more What Is Python's Equivalent To 'ulimit'?

Understanding Named Pipes (fifo) In Python

I am running Python 2.7 on a Unix environment (tested on Ubuntu and OSX) I have the following progr… Read more Understanding Named Pipes (fifo) In Python

Subprocess Stdout/stderr To Finite Size Logfile

I have a process which chats a lot to stderr, and I want to log that stuff to a file. foo 2> /… Read more Subprocess Stdout/stderr To Finite Size Logfile

Curl Large File As Post Request

I have a number of ~10MB xml files on a local computer. For each file, I need to send it to a remot… Read more Curl Large File As Post Request

Grep A Word And Find Its Count From Log File For Different Times

log file which contains following data. 2014-10-19 17:30:25: Creating destination directory: '\… Read more Grep A Word And Find Its Count From Log File For Different Times

Python: File Attachment Not Working While Sending Email By Crontab

The following source code is working fine when running manually but with crontab job mail is succes… Read more Python: File Attachment Not Working While Sending Email By Crontab