feat: add bash configs

This commit is contained in:
Mohammad Rafiq 2025-02-06 15:35:31 +08:00
parent 3e4859d7bb
commit 154869acc5
3 changed files with 122 additions and 0 deletions

2
.bash_aliases Normal file
View file

@ -0,0 +1,2 @@
alias consolidate_sh='find . -type f -name '\''*.sh'\'' -exec echo -e "=== Filename: {} ===\n\`\`\`bash" \; -exec cat {} \; -exec echo -e "\n\`\`\`" \; > output-$(date +"%Y%m%d%H%M%S").txt'
alias consolidate_md='find . -type f -name '\''*.md'\'' -exec echo -e "=== Filename: {} ===\n\`\`\`markdown" \; -exec cat {} \; -exec echo -e "\n\`\`\`" \; > output-$(date +"%Y%m%d%H%M%S").txt'