Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
SkunkworksAI
/
falcon-180b
like
0
Follow
SkunkworksAI
84
Transformers
Safetensors
Inference Endpoints
Model card
Files
Files and versions
Community
99
Train
Deploy
Use this model
Upload rename.sh with huggingface_hub
#17
by
Sentdex
- opened
Sep 11, 2023
base:
refs/heads/main
←
from:
refs/pr/17
Discussion
Files changed
+7
-0
Files changed (1)
hide
show
rename.sh
+7
-0
rename.sh
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
for symlink in *; do
2
+
if [ -L "$symlink" ] && [ ! -d "$symlink" ]; then
3
+
target=$(readlink -f "$symlink")
4
+
filename=$(basename "$target")
5
+
mv "$target" "$symlink"
6
+
fi
7
+
done