You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
282 B
Plaintext
16 lines
282 B
Plaintext
4 years ago
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
for file in $(ls ./.paths)
|
||
|
do
|
||
|
dir=$(cat ./.paths/$file)
|
||
|
sudo mkdir -p "$dir"
|
||
|
echo "$dir/$file"
|
||
|
sudo unlink "$dir/$file" 2>&1 > /dev/null
|
||
|
sudo mv "$file" "$dir"
|
||
|
sudo rm ./.paths/$file
|
||
|
done
|
||
|
if [ -z "$(ls ./.paths)" ]; then
|
||
|
sudo rmdir ./.paths
|
||
|
fi
|