rcaldous / Create Folders from txt list

0 gustos
0 bifurcaciones
1 archivos
Última actividad 1725103981
1 xargs -d '\n' mkdir -p -- < folder_list.txt

rcaldous / Clear Bash history

0 gustos
0 bifurcaciones
1 archivos
Última actividad 1725103798
Don't want to be tempted to up arrow?
1 cat /dev/null > ~/.bash_history && history -c && exit

rcaldous / Zip All sub folders (no compression)

0 gustos
0 bifurcaciones
1 archivos
Última actividad 1725103678
1 for i in */; do zip -r0 "${i%/}.zip" "$i"; done

rcaldous / getall.sh

0 gustos
0 bifurcaciones
1 archivos
Última actividad 1721070977
1 #!/bin/bash
2 find . -mindepth 2 -type f -print -exec mv {} . \;
Siguiente Anterior