mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-05 11:26:25 +02:00
7 lines
145 B
Bash
7 lines
145 B
Bash
#!/usr/bin/bash
|
|
|
|
wai=$(dirname $(readlink -f "$0")) # Current script directory
|
|
|
|
tmp=$(mktemp)
|
|
cat $@ | ${wai}/.power_unique.sh > $tmp
|
|
mv $tmp $@
|