maybe fix hidden files
This commit is contained in:
parent
477148d207
commit
0fcaa9bdf1
3 changed files with 11 additions and 0 deletions
|
@ -11,6 +11,7 @@ tasks:
|
||||||
cd ~/.dotfiles
|
cd ~/.dotfiles
|
||||||
~/website/fix-dotfile-paths.sh
|
~/website/fix-dotfile-paths.sh
|
||||||
emacs --batch -f package-initialize --script ~/website/publish.el
|
emacs --batch -f package-initialize --script ~/website/publish.el
|
||||||
|
~/website/post-publish.sh
|
||||||
- package: |
|
- package: |
|
||||||
cd ~/public_html/
|
cd ~/public_html/
|
||||||
tar -cvz . > ../site.tar.gz
|
tar -cvz . > ../site.tar.gz
|
||||||
|
|
|
@ -16,6 +16,10 @@ create_ls_entry () {
|
||||||
if [ "$files" != '' ]; then
|
if [ "$files" != '' ]; then
|
||||||
echo '* Files' >> index.org
|
echo '* Files' >> index.org
|
||||||
echo "$files" | sort | while read -r file; do
|
echo "$files" | sort | while read -r file; do
|
||||||
|
if echo $file | grep -q '^\.'; then
|
||||||
|
tmp=$(echo "$file" | sed 's/^\.//' | sed 's/$/.hidden/')
|
||||||
|
mv $file $tmp
|
||||||
|
fi
|
||||||
if [ "$file" = ".wallpaper" ]; then
|
if [ "$file" = ".wallpaper" ]; then
|
||||||
echo "- [[https://wallhaven.cc/w/vgryy5][=.wallpaper=]]" >> index.org
|
echo "- [[https://wallhaven.cc/w/vgryy5][=.wallpaper=]]" >> index.org
|
||||||
elif echo "$file" | grep -q "\.org$" && [ "$file" != "index.org" ]; then
|
elif echo "$file" | grep -q "\.org$" && [ "$file" != "index.org" ]; then
|
||||||
|
|
6
post-publish.sh
Executable file
6
post-publish.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
find -L -- . -type f -name '*.hidden.html' | while read -r file; do
|
||||||
|
newfile=$(echo "$file" | sed 's/.hidden.html$/.html/' | sed 's/\/\([^\/]*\)$/\/.\1/')
|
||||||
|
mv "$file" "$newfile"
|
||||||
|
done
|
Loading…
Add table
Reference in a new issue