About 1,780,000 results
Open links in new tab
  1. Shell Script Examples - GeeksforGeeks

    Jan 20, 2026 · For all the Linux distributions, the shell script is like a magic wand that automates the process, saves users time, and increases productivity. This shell scripting tutorial will introduce you …

  2. Download - Get Ubuntu

    Download Ubuntu desktop, Ubuntu Server, Ubuntu for Raspberry Pi and IoT devices, Ubuntu Core, and all the Ubuntu flavors. Ubuntu is an open source software platform that runs everywhere from the PC …

  3. 9 Examples of for Loops in Linux Bash Scripts - How-To Geek

    Oct 30, 2023 · The versatile Bash for loop does much more than loop around a set number of times. We describe its many variants so you can use them successfully in your own Linux scripts. The for Loop …

  4. linux - Looping through the content of a file in Bash - Stack Overflow

    Oct 6, 2009 · How do I iterate through each line of a text file with Bash? With this script:

  5. script (1) — Linux manual page - man7.org

    The exit status of the child process is always stored in the type script file too. -f, --flush Flush output after each write. This is nice for telecooperation: one person does mkfifo foo; script -f foo, and another can …

  6. Shell Script to Automate System Updates and Upgrades in Linux

    Jul 23, 2025 · As we all know, we often need to update and upgrade Linux packages and delete the older version and unnecessary files and get rid of them for better performance, so we execute a …

  7. linux - How can I fully log all bash scripts actions? - Server Fault

    Testing with the OP's dummy script, it records each command and whatever the result: ssh timeout, incorrect domain, etc. Or for a valid ssh address, it records the commands in the remote shell. If …

  8. Master Bash Script Loops for Automation - LinuxConfig.org

    Sep 22, 2025 · Master Bash script loops for efficient automation. Discover loop types, syntax, troubleshooting, and optimization for powerful, flexible scripts.

  9. shell script - Unix & Linux Stack Exchange

    Apr 12, 2017 · The script will cd into each of the sub directories, execute a command on the files in the directory, and cd out to continue onto the next directory. What is the best way to do this?

  10. bash - How to get execution time of a script effectively? - Unix ...

    Jan 26, 2017 · I would like to display the completion time of a script. What I currently do is - #!/bin/bash date ## echo the date at start # the script contents date ## echo the date at end This just show's the …