removed . from files

This commit is contained in:
Eric D. Rohler 2018-10-17 22:38:37 -04:00
parent 0074db17c5
commit 21efdd9d00
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +0,0 @@
#!/usr/bin/env bash
for f in 'ls'
do
echo "$f"
done

6
install.sh Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/bash
for f in *
do
ln -s "$f" "$HOME/.${f##*/}"
done

View File