This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
run() { | |
number=$1 | |
shift | |
for _ in $(seq $number); do | |
$@ | |
done | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
mkdir -p {~/.local,/usr}/share/themes | |
mkdir -p ~/.themes | |
THEMES="$(ls ~/.themes) $(ls ~/.local/share/themes) $(ls /usr/share/themes)" | |
mkdir -p {~/.local,/usr}/share/icons | |
mkdir -p ~/.icons |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir "merges"; # On crée le dossier contenant la sortie | |
mmv '*/*"*' "#1/#2 #3" || true; | |
mmv "*/* *" "#1/#2 #3" || true; # simplifie un problème affectant les noms de fichier | |
mmv "*/*'*" "#1/#2 #3" || true; | |
merge () { | |
for directory in */; do |
NewerOlder