История изменений
Исправление Vsevolod-linuxoid, (текущая версия) :
#!/bin/bash
touch /path/to/some/file
server >> /path/to/some/file
client >> /path/to/some/file
cat /path/to/some/file
rm /path/to/some/file
exit
Исходная версия Vsevolod-linuxoid, :
#!/bin/bash
touch path/to/some/file
server >> path/to/some/file
client >> path/to/some/file
cat path/to/some/file
rm path/to/some/file
exit