mamchenkov.net
Recursively adding files and directories in Gnu Arch
One of the little annoyances of Gnu Arch is that it does not add files and directories recursively. Not to worry, though. Here is a little shell script that can assist with that task: #!/bin/bash # Find all files and directories, skipping ./{arch} for FILE in `find . -path './{arch}' -prune -o -print` do # … Continue reading Recursively adding files and directories in Gnu Arch