remove unused file

This commit is contained in:
Robert Langhammer 2019-01-12 11:34:09 +01:00
parent 8afc5446e2
commit 5a98cedb84
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
#!/bin/bash
[ $# != 1 ] && echo "parameter tmpfile missing!" && exit
tmpfile=$1
# bind babel-socket to FD3
exec 3<>/dev/tcp/::1/33123
# read and write data
cat <&3 > "$tmpfile" &
# write "dump" to sock
echo dump >&3
# Wait a moment and close FD3
sleep 0.1
exec 3<&-
# and clean up
pkill -P $$