2
votes
How to suppress Terminated message after killing in bash?
The short answer is that you can't. Bash always prints the status of foreground jobs. The monitoring flag only applies for background jobs, and only for interactive shells, not scripts.
se …
1
vote
What process is listening on a certain port on Solaris?
You might not want to, but your best bet is to grab the sunfreeware CD and install lsof.
Other than that, yes you can grovel around in /proc with a shell script.
…
2
votes
ELF file headers
I'm fairly sure that a sufficiently complex ld script can do what you want. However, I have no idea how.
On the other hand, elfsh …
2
votes
2
votes
Delete all but the most recent X files in bash
find . -maxdepth 1 -type f -printf '%T@ %p\0' | sort -r -z -n | awk 'BEGIN { RS="\0"; ORS="\0"; FS="" } NR > 5 { sub("^[0-9]*(.[0-9]*)? ", ""); print }' | xargs -0 rm -f
…
0
votes
How to set (unix) permissions when creating a file in SAP ABAP?
What's the umask of the running process? Can you alter it?
…
