diff --git a/README.md b/README.md index ae677b9..ae0b253 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ Dotfiles and Scripts ==================== -Some sample of my config files, scripts, etc. +Some sample of my config files. + +Many bash scripts, examples and useful stuff. diff --git a/shell_scripts/gi.sh b/shell_scripts/git/gi.sh similarity index 100% rename from shell_scripts/gi.sh rename to shell_scripts/git/gi.sh diff --git a/shell_scripts/gitpass.sh b/shell_scripts/git/gitpass.sh similarity index 100% rename from shell_scripts/gitpass.sh rename to shell_scripts/git/gitpass.sh diff --git a/shell_scripts/neat_examples/loop_example.sh b/shell_scripts/neat_examples/loop_example.sh new file mode 100644 index 0000000..1326b06 --- /dev/null +++ b/shell_scripts/neat_examples/loop_example.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +for p in 1 2 3 4 5 +do + echo $p +done + +for p in `seq 6 10` +do + echo $p +done \ No newline at end of file diff --git a/shell_scripts/backup.sh b/shell_scripts/useful/backup.sh similarity index 100% rename from shell_scripts/backup.sh rename to shell_scripts/useful/backup.sh diff --git a/shell_scripts/secure_pan.sh b/shell_scripts/useful/secure_pan.sh similarity index 100% rename from shell_scripts/secure_pan.sh rename to shell_scripts/useful/secure_pan.sh