remarkable-keywriter icon indicating copy to clipboard operation
remarkable-keywriter copied to clipboard

Can't figure it out

Open chiarafe opened this issue 4 years ago • 2 comments

I've been trying to copy the file but I keep getting : reMarkable: ~/ scp edit 192.168.1.90:/Users/chiarafeliciani/Desktop/keywriter [email protected]'s password: edit: not a regular file reMarkable: ~/

I have zero experiences with coding so I am looking fr someone who can help me through

chiarafe avatar Jun 07 '21 22:06 chiarafe

@chiarafe It's likely that "edit" is an alias in your shell. Try scp ./edit 192.168.1.90:/Users/chiarafeliciani/Desktop/keywriter instead. ./ advises your shell that "edit" is a local file

phaer avatar Nov 22 '21 12:11 phaer

https://stackoverflow.com/questions/29547087/scp-gives-not-a-regular-file

Use scp -r edit 192.168.1.90:/Users/chiarafeliciani/Desktop/keywriter. -r is required because you are copying a folder, not a single file.

qubist avatar Mar 20 '22 21:03 qubist