0
votes
1answer
107 views

Bash: Is it possible to change command before execution

I want to change the command so that command line flag(options) are placed before command line arguments, as which is done automatically by GNU getopt. Mac use BSD getopt so that function is lacked. ...
3
votes
1answer
881 views

formatted modified date/time on mac bash?

In my bash script on mac (snow leopard) I have a path and filename, and I need to get the modified date/time of that file. I found I could do: stat -f "%m" $MYFILE However, that returns what I ...
0
votes
2answers
263 views

SED on Mac OS X

So I have tried to install gsed via macports but this hasnt solved the issue. I was going to uninstall it to reduce clutter, however, before I do so, how would i fix the error below. It is because ...
4
votes
5answers
4k views

How to timestamp every ping result?

Ping returns this by default: 64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms Is there some way I can get it to add the timestamp? eg: Mon 21 May 2012 15:15:37 EST | 64 bytes from ...
2
votes
5answers
459 views

How to test for GNU or BSD version of rm?

The GNU version of rm has a cool -I flag. From the manpage: -I prompt once before removing more than three files, or when removing recursively. Less intrusive than -i, while still ...
29
votes
6answers
7k views

find -exec a shell function?

Is there a way to get find to execute a function I just defined in a bash script? dosomething () { echo "doing something with $1" } find . -exec dosomething {} \; find just tells me: find: ...
2
votes
3answers
1k views

remove an ACL entry for just ONE user in MacOS? oddly difficult [closed]

I'm trying to remove an ACL set for johndoe from all the folders recursively on one of my drives without hosing any other entries! Anyone know how to do this without affecting the ACLs that already ...