Store array as a BF propery

I want to store the results of:

q: addresses of ip interfaces of network as string
A: 10.1.1.62
A: 169.254.229.132
A: 10.1.149.254
A: 127.0.0.1

…into a property. That way if things change, I can run a command, then store the value again. Know a good way?

This is related to my other post. Thought this would be another way to accomplish my goals.

Something like:

concatenations " ;; " of (it as string) whose(it != "127.0.0.1") of addresses of ip interfaces of network

Prefect! I want to use this as a sort of signature. That will get the job done.

value of setting "_NetSignature" of client as string != unique value of concatenations ";" of (it as string) whose(it != "127.0.0.1") of addresses of ip interfaces of network

Also had to do some digging for the whole singular vs plural… But you answered that as well. Two for one!

Thanks again!

2 Likes