Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a82d429015 | |||
| 08ab597e95 |
3
script.sh
Normal file
3
script.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#! /bin/bash
|
||||
|
||||
cut -f1 -d: /etc/passwd |sort > user.list
|
||||
1
script2.sh
Normal file
1
script2.sh
Normal file
@@ -0,0 +1 @@
|
||||
curl -L https://cours.opendoor.fr/Fichiers/SHL/access_log-20220513.gz | zcat | cut -f1 -d' ' | sort | uniq -c | sort -n
|
||||
10
script3.sh
Normal file
10
script3.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#! /bin/bash
|
||||
|
||||
mkdir -p /var/www/html
|
||||
|
||||
cat > /var/www/html/index.html << EOF
|
||||
<html>
|
||||
<p id="p1" style="color: ${1:-red}">Hello World</p>
|
||||
</html>
|
||||
|
||||
EOF
|
||||
Reference in New Issue
Block a user