💾 Archived View for station.martinrue.com › ailolai › d138bad98ffc45ce938aec0f8f036ef0 captured on 2023-07-22 at 18:19:39. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

🚧 View Differences

-=-=-=-=-=-=-

👽 ailolai

How to add links to all your files in a folder in gemini. Add or edit a index.gmi Go vim :D and on command mode :r !ls

Then add the => before each one of those

2 years ago · 👍 dsfadsfgafgf, moddedbear, lykso, jforg, eo

Actions

👋 Join Station

3 Replies

👽 shway

Nice! Also:

ls | perl -pe 's/^/=> /g' newfile.gmi

If you whant to add only file but have munltiple directories, use find:

find . -type f -exec printf "=> %s\n" {} \; · 2 years ago

👽 enceladus

A variant of those commands (dropping the colon, and replacing the % with a comma) will work in every ancestor of vim right back to ed, interestingly enough. Such a powerful and timeless way of manipulating text! · 2 years ago

👽 ailolai

To insert the link arrow just :%s/^/=>/g ^ meaning start of line and % apply this command s (substitute) to each line · 2 years ago