All links of one day
in a single page.
<Previous day - Next day>

rss_feedDaily RSS Feed
floral_left The Daily Shaarli floral_right
——————————— 03/22/23 - Wednesday 22, March 2023 ———————————
file - transfer -

Un répertoire à copier sur une autre machine, vous avez juste besoin de netcat et tar ;-)

Serveur source :

root@host-source:/root/files# ls
file1.txt file2.txt
root@host-source:/root/files# tar -cz . | nc -l -p 60222

Serveur cible :

root@host-target:/root/files# ls
root@host-target:/root/files# nc -w 1 host-source 60222| tar -xz
root@host-target:/root/files# ls
file1.txt file2.txt

-