mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-25 20:58:37 -06:00
new: Added tmp-clipboard and get-remote-tmp-clipboard
This commit is contained in:
parent
78f0643183
commit
8563d1c423
3 changed files with 15 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
![Number of scripts](https://img.shields.io/badge/number_of_scripts-40-blue)
|
||||
![Number of scripts](https://img.shields.io/badge/number_of_scripts-43-blue)
|
||||
# Random Scripts
|
||||
This repository is for random scripts I wrote mostly for personal use.
|
||||
|
||||
|
|
7
get-remote-tmp-clipboard
Normal file
7
get-remote-tmp-clipboard
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# This script should be used in conjunction with tmp-clipboard
|
||||
# You need to pass a hostname to this script as an argument, and the script
|
||||
# will pull the text saved by the remote machine's tmp-clipboard script
|
||||
|
||||
ssh $* 'cat /tmp/.tmp-clipboard; >$_' | wl-copy
|
7
tmp-clipboard
Normal file
7
tmp-clipboard
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/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.
|
||||
|
||||
cat >/tmp/.tmp-clipboard
|
||||
|
Loading…
Reference in a new issue