4
votes
3answers
133 views

How can I determine my csh version?

I have some code which works for me, but when I gave it to some colleagues, it broke. They're using tcsh whereas, as far as I can figure, I'm using csh. I've tried: csh -v csh --version csh -V csh ...
-1
votes
1answer
50 views

Which shell provides built-in features for handling complex data structure and binary files?

As the title suggests: Which shell has built-in features to accomplish Handling of complex data structures (for example, nested hashes or vector inside a hash) Read from and write into binary file ...
0
votes
1answer
221 views

shell script: send Command to serial console and get result

On my Computer is a Cisco WS-C3550 connected to serial interface, I can connect with following Command to the Device: cu -l /dev/cuau0 -s 9600 If I connected to the Device i send following command ...
2
votes
3answers
493 views

How can I detect BSD vs. GNU version of date in shell script

I am writing a shell script that needs to do some date string manipulation. The script should work across as many *nix variants as possible, so I need to handle situations where the machine might have ...
2
votes
5answers
464 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: ...