Can't figure it out
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 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
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.