How to solve error of missing destination file operand after '/sdcard/ngrok/ngrok ' in termux [on hold]

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
-1
down vote

favorite












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.









share|improve this question









New contributor




Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda 2 hours ago


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.
















    up vote
    -1
    down vote

    favorite












    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.









    share|improve this question









    New contributor




    Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.











    put on hold as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda 2 hours ago


    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.














      up vote
      -1
      down vote

      favorite









      up vote
      -1
      down vote

      favorite











      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.









      share|improve this question









      New contributor




      Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      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






      share|improve this question









      New contributor




      Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 19 hours ago









      Debian_yadav

      1,0933922




      1,0933922






      New contributor




      Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 21 hours ago









      Ronny

      1




      1




      New contributor




      Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Ronny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




      put on hold as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda 2 hours ago


      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.




      put on hold as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda 2 hours ago


      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.




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          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.






          share|improve this answer






















          • Thanks but it's not working friend
            – Ronny
            15 hours ago






          • 1




            @Ronny What is the error?
            – Debian_yadav
            15 hours ago










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – Debian_yadav
            9 hours ago

















          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          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.






          share|improve this answer






















          • Thanks but it's not working friend
            – Ronny
            15 hours ago






          • 1




            @Ronny What is the error?
            – Debian_yadav
            15 hours ago










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – Debian_yadav
            9 hours ago














          up vote
          1
          down vote













          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.






          share|improve this answer






















          • Thanks but it's not working friend
            – Ronny
            15 hours ago






          • 1




            @Ronny What is the error?
            – Debian_yadav
            15 hours ago










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – Debian_yadav
            9 hours ago












          up vote
          1
          down vote










          up vote
          1
          down vote









          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.






          share|improve this answer














          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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 9 hours ago

























          answered 21 hours ago









          Debian_yadav

          1,0933922




          1,0933922











          • Thanks but it's not working friend
            – Ronny
            15 hours ago






          • 1




            @Ronny What is the error?
            – Debian_yadav
            15 hours ago










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – Debian_yadav
            9 hours ago
















          • Thanks but it's not working friend
            – Ronny
            15 hours ago






          • 1




            @Ronny What is the error?
            – Debian_yadav
            15 hours ago










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – Debian_yadav
            9 hours ago















          Thanks but it's not working friend
          – Ronny
          15 hours ago




          Thanks but it's not working friend
          – Ronny
          15 hours ago




          1




          1




          @Ronny What is the error?
          – Debian_yadav
          15 hours ago




          @Ronny What is the error?
          – Debian_yadav
          15 hours ago












          @Ronny may be it is not file, if it directory then use -r option. See update.
          – Debian_yadav
          9 hours ago




          @Ronny may be it is not file, if it directory then use -r option. See update.
          – Debian_yadav
          9 hours ago


          TEoNqSpdi 8iGX76jhbmpI9p3IW1x2cJNrAf TIEbbIblmZTjCj7g
          Wq 6ZMn,gz43hkmenLiYquhG4jxab6BwXKENxxj6oygSy V,RBZR33rhL6Jt6A6L,GO G5V4FCKnC

          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          How many registers does an x86_64 CPU actually have?

          Displaying single band from multi-band raster using QGIS