When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Linux Command Line Books by William Shotts

    www.linuxcommand.org/tlcl.php

    In addition to the basics of command line use and shell scripting, The Linux Command Line includes chapters on many common programs used on the command line, as well as more advanced topics. Released under a Creative Commons license , this book is available for free download in PDF format.

  3. LinuxCommand.org is a web site that helps users discover the power of the Linux command line.

  4. LinuxCommand.org: Writing shell scripts.

    www.linuxcommand.org/lc3_writing_shell_scripts.php

    Scripts unlock the power of our Linux machine. So let's have some fun! Contents. Writing Our First Script and Getting It to Work; Editing the Scripts We Already Have; Here Scripts; Variables; Command Substitution and Constants; Shell Functions; Some Real Work; Flow Control - Part 1; Stay Out of Trouble; Keyboard Input and Arithmetic; Flow ...

  5. LinuxCommand.org: Adventures

    linuxcommand.org/lc3_adventures.php

    It's also a useful and important skill. In this adventure, we will look at its major features and techniques, as well as discover a command-line tool that makes SQL easy to use with our scripts and projects.

  6. LinuxCommand.org: Resources

    linuxcommand.org/lc3_resources.php

    Generated templates include useful shell functions, error and signal handling, and command-line option and argument parsing. my_cloud Implements a primitive cloud storage system using any available remote host running an SSH server.

  7. Learning the shell - Lesson 5: Manipulating Files -...

    www.linuxcommand.org/lc3_lts0050.php

    These four commands are among the most frequently used Linux commands. They are the basic commands for manipulating both files and directories. Now, to be frank, some of the tasks performed by these commands are more easily done with a graphical file manager.

  8. LinuxCommand.org: Learning the shell.

    linuxcommand.org/lc3_learning_the_shell.php

    Since I was forced to use the legacy OS while I was on the job, I installed a Linux-like command line environment for it. When I heard about the problem, I realized I could perform this task with this single line: du -s * | sort -nr > $HOME/user_space_report.txt

  9. Learning the shell - Lesson 1: What is the shell? -...

    www.linuxcommand.org/lc3_lts0010.php

    Simply put, the shell is a program that takes commands from the keyboard and gives them to the operating system to perform. In the old days, it was the only user interface available on a Unix-like system such as Linux. Nowadays, we have graphical user interfaces (GUIs) in addition to command line interfaces (CLIs) such as the shell.

  10. Command Documentation - LinuxCommand.org

    linuxcommand.org/lc3_man_page_index.php

    Command line interface for SQLite version 3 : su: Run a command with substitute user and group ID : sudo: Execute a command as another user : tar: An archiving utility : tmux: Terminal multiplexer : top: Display Linux processes : tput: Initialize a terminal or query terminfo database : uptime: Tell how long the system has been running. vim

  11. Linux Command Line Adventure: AWK

    linuxcommand.org/lc3_adv_awk.php

    Even if we don’t include a filenames on the command line for AWK to input, we can tell AWK to read data from a file specified from within a program. Normally we don’t need to do this, but there are some cases where this might be handy.