How to solve error of missing destination file operand after '/sdcard/ngrok/ngrok ' in termux [closed]
I am using termux in my android but I get the following error when I want to copy some data from sdcard
to $HOME
IN TERMUX the following
error shows up:missing destination file operand after '/sdcard/ngrok/ngrok'
here are commands:
$ cp /sdcard/ngrok/ngrok
cp: missing destination file operand after '/sdcard/ngrok/ngrok'
try 'cp --help' for more information.
cp android
closed as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda Nov 13 '18 at 22:59
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Romeo Ninov, Isaac
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I am using termux in my android but I get the following error when I want to copy some data from sdcard
to $HOME
IN TERMUX the following
error shows up:missing destination file operand after '/sdcard/ngrok/ngrok'
here are commands:
$ cp /sdcard/ngrok/ngrok
cp: missing destination file operand after '/sdcard/ngrok/ngrok'
try 'cp --help' for more information.
cp android
closed as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda Nov 13 '18 at 22:59
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Romeo Ninov, Isaac
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I am using termux in my android but I get the following error when I want to copy some data from sdcard
to $HOME
IN TERMUX the following
error shows up:missing destination file operand after '/sdcard/ngrok/ngrok'
here are commands:
$ cp /sdcard/ngrok/ngrok
cp: missing destination file operand after '/sdcard/ngrok/ngrok'
try 'cp --help' for more information.
cp android
I am using termux in my android but I get the following error when I want to copy some data from sdcard
to $HOME
IN TERMUX the following
error shows up:missing destination file operand after '/sdcard/ngrok/ngrok'
here are commands:
$ cp /sdcard/ngrok/ngrok
cp: missing destination file operand after '/sdcard/ngrok/ngrok'
try 'cp --help' for more information.
cp android
cp android
edited Nov 13 '18 at 6:16
P_Yadav
1,5253923
1,5253923
asked Nov 13 '18 at 4:22
Ronny
1
1
closed as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda Nov 13 '18 at 22:59
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Romeo Ninov, Isaac
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda Nov 13 '18 at 22:59
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Romeo Ninov, Isaac
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
Thanks but it's not working friend
– Ronny
Nov 13 '18 at 10:15
1
@Ronny What is the error?
– P_Yadav
Nov 13 '18 at 10:16
@Ronny may be it is not file, if it directory then use-r
option. See update.
– P_Yadav
Nov 13 '18 at 16:29
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
Thanks but it's not working friend
– Ronny
Nov 13 '18 at 10:15
1
@Ronny What is the error?
– P_Yadav
Nov 13 '18 at 10:16
@Ronny may be it is not file, if it directory then use-r
option. See update.
– P_Yadav
Nov 13 '18 at 16:29
add a comment |
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
Thanks but it's not working friend
– Ronny
Nov 13 '18 at 10:15
1
@Ronny What is the error?
– P_Yadav
Nov 13 '18 at 10:16
@Ronny may be it is not file, if it directory then use-r
option. See update.
– P_Yadav
Nov 13 '18 at 16:29
add a comment |
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
edited Nov 13 '18 at 16:29
answered Nov 13 '18 at 4:29
P_Yadav
1,5253923
1,5253923
Thanks but it's not working friend
– Ronny
Nov 13 '18 at 10:15
1
@Ronny What is the error?
– P_Yadav
Nov 13 '18 at 10:16
@Ronny may be it is not file, if it directory then use-r
option. See update.
– P_Yadav
Nov 13 '18 at 16:29
add a comment |
Thanks but it's not working friend
– Ronny
Nov 13 '18 at 10:15
1
@Ronny What is the error?
– P_Yadav
Nov 13 '18 at 10:16
@Ronny may be it is not file, if it directory then use-r
option. See update.
– P_Yadav
Nov 13 '18 at 16:29
Thanks but it's not working friend
– Ronny
Nov 13 '18 at 10:15
Thanks but it's not working friend
– Ronny
Nov 13 '18 at 10:15
1
1
@Ronny What is the error?
– P_Yadav
Nov 13 '18 at 10:16
@Ronny What is the error?
– P_Yadav
Nov 13 '18 at 10:16
@Ronny may be it is not file, if it directory then use
-r
option. See update.– P_Yadav
Nov 13 '18 at 16:29
@Ronny may be it is not file, if it directory then use
-r
option. See update.– P_Yadav
Nov 13 '18 at 16:29
add a comment |