2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

scp コマンドで「not a regular file」

Posted at

scp コマンドで「not a regular file」

こんな風になる

$ scp -i ~/.ssh/key ./* user@server:~
./js: not a regular file

解決

ディレクトリを含むので r オプションが必要でした

$ scp -i ~/.ssh/key -r ./* user@server:~
js/108a0b4b23a53e128bce.js        100% 9182KB 789.6KB/s   00:01
2
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?