#!/bin/bash
P_logs_main() {
	local tmp=$HOME/tmp
	echo >&2
	cat "$tmp/"P_$$_*.log
	rm -f "$tmp/"P_$$_*.log
}
P_logs_main
