pwn.college
DojosLeaderboardCommunity
LoginRegister
Back to linux-luminarium

Chaining Commands

linux-luminarium
0/12 challenges completed

In the piping module, you've explored the concept of using several commands, with data flowing between them via pipes, to accomplish something slightly more complex than the individual commands can do. Of course, this concept also applies independent of the data transfer: sometimes, you might want to run several commands in quick succession to achieve some cumulative effect.

This module will cover a few ways, aside from piping, that commands can be chained. By the end, you'll be on your way to writing shell scripts!

Challenges

1
Chaining with Semicolons
2
Building on Success
3
Handling Failure
4
Your First Shell Script
5
Redirecting Script Output
6
Executable Shell Scripts
7
Understanding Shebangs
8
Scripting with Arguments
9
Scripting with Conditionals
10
Scripting with Default Cases
11
Scripting with Multiple Conditions
12
Reading Shell Scripts