About 1,960,000 results
Open links in new tab
  1. command line - What does "./" mean in linux shell? - Ask Ubuntu

    What does the command ./ mean? For example, sometimes we call a file with ./config, sometimes ../config, thanks

  2. What does "&" at the end of a linux command mean?

    Nov 12, 2012 · For example: command gedit launches the default editor gedit UI. command eclipse launches eclipse IDE. Such commands keep throwing the logs of activities in the …

  3. Find all files containing a specific text (string) on Linux

    Jun 6, 2013 · How do I find all files containing a specific string of text within their file contents? The following doesn't work. It seems to display every single file in the system. find / -type f …

  4. How to check OS and version using a Linux command

    What is the Linux command to check the server OS and its version? I am connected to the server using shell.

  5. shell - How do I exit or cancel a bad bash command? - Unix

    I expect to get some flak for this, but I can't find the answer anywhere. It seems like it should be so obvious. Sometimes, when I type a bad command in a bash terminal, the cursor just jumps …

  6. command line - How to unzip a zip file from the Terminal? - Ask …

    Oct 13, 2017 · Just downloaded a .zip file from the internet. I want to use the terminal to unzip the file. What is the correct way to do this?

  7. How do you time how long a command took to run? [duplicate]

    How would you find out how long a running process took to complete? Example: date; dd bs=1m if=/foo of=bar; date ^This example only has 1 second of resolution. Any shell is acceptable.

  8. How do I navigate between directories in terminal? - Ask Ubuntu

    The filesystem is GNU/Linux is like a tree, except that the root is on top. :-) So you have structure like: / bin/ home/ sharon/ Documents/ Downloads/ fileA.txt fileB.jpg usr/ var/ If you want to …

  9. bash - Confusing use of && and - Unix & Linux Stack Exchange

    Instead of "if the left side returns zero", I would write "if the left side command's exit status is zero". I find "return" a bit ambiguous as the output and the exit status can both be considered …

  10. What is the `tee` command in Linux? - Unix & Linux Stack Exchange

    Oct 26, 2023 · The tee command allows you write the result to both file and standard output so allows you to count the characters, words & lines without retreat the resulting file itself.