Find the answer to your Linux question:
Results 1 to 7 of 7
What is file-manipulation tool used for on the Linux command line?...
  1. #1
    Just Joined!
    Join Date
    Mar 2010
    Posts
    2

    What is the purpose for using file-manipulation tools with the CLI?

    What is file-manipulation tool used for on the Linux command line?

  2. #2
    Linux Guru coopstah13's Avatar
    Join Date
    Nov 2007
    Location
    NH, USA
    Posts
    3,149
    to manipulate files from the command line

  3. #3
    Trusted Penguin jayd512's Avatar
    Join Date
    Feb 2008
    Location
    Kentucky
    Posts
    4,071
    Unless you have a different meaning behind your question...
    Yeah, coopstah said it.
    Jay

    New users, read this first.
    New Member FAQ
    Registered Linux User #463940
    I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.

  4. #4
    Linux Engineer hazel's Avatar
    Join Date
    May 2004
    Location
    Harrow, UK
    Posts
    955
    If you mean why should you do it instead of using nautilus or the like, the answer is simple: it's much much faster.
    "I'm just a little old lady; don't try to dazzle me with jargon!"

  5. #5
    Just Joined! linxt's Avatar
    Join Date
    Feb 2010
    Posts
    10
    Also, it gives you a way to make repairs if something happens to the X-server, a backdoor to view, move, or edit files when you can't use the desktop.

  6. #6
    Trusted Penguin Dapper Dan's Avatar
    Join Date
    Oct 2004
    Location
    The Sovereign State of South Carolina
    Posts
    4,562
    The engine stops running and you need to know what the problem is. Unlike Windows which has the hood welded shut, you're actually allowed to open the hood and investigate the matter for yourself. With a little expertise, you can clear that fuel line and get your engine going again.
    Linux Mint + IceWM Registered:#371367 New Members: click here

  7. #7
    Linux User
    Join Date
    Jan 2005
    Location
    Saint Paul, MN
    Posts
    262
    Quote Originally Posted by hazel View Post
    If you mean why should you do it instead of using nautilus or the like, the answer is simple: it's much much faster.
    Lilke you downloaded images from your camera and they are "*.JPG" but you prefer "*.jpg" instead. Simple command line change:
    Code:
    for f in *.JPG; do mv ${f} ${f%JPG}jpg; done
    And yes using the command line is much much faster.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...