This commit is contained in:
2026-04-27 01:30:33 +02:00
parent 9e29b8b096
commit 49e7930541
80 changed files with 924 additions and 703 deletions

17
shell/scripts.md Normal file
View File

@@ -0,0 +1,17 @@
---
title: Making Scripts
tags:
- shell
---
Make a script for your regular shell commands.
```sh
name=look
echo '#!/bin/sh > ${name}.sh
echo 'echo "This script is called $0"'
chmod u+x !$
./!$
```
Notice the single-quotes, *not* double quotes.