2024-09-27 15:09:52 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# This script just puts the piped text to a temp file
|
|
|
|
# Using the get-remote-tmp-clipboard script, we can retrieve it from another machine.
|
|
|
|
|
2024-09-29 17:21:03 -05:00
|
|
|
cat >/tmp/tmp-clipboard
|
2024-09-27 15:09:52 -05:00
|
|
|
|