Jump to content
Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Giannis

Δημιουργία αρχείου URL redirection σε macOS

Recommended Posts

Για την δημιουργία ενός αρχείου (URL) που ανοίγοντάς το θα μας ανακατευθείνει σε έναν συγκεκριμένο ιστότοπο, στο λειτουργικό macOS μπορεί να γίνει με δύο τρόπους.

  • Ανοίγοντας τον αγαπημένο μας text editor και αποθηκεύοντας το παρακάτω περιεχόμενο με κατάληξη .url

[InternetShortcut]
URL=http://to_link.com
  • Με ένα απλό bash script

#!/bin/bash
if [[ $# -le 1 || $# -ge 3 ]] ; then
    echo Usage: $0 '<namefile> <url>'
    echo
    echo Creates '<namefile>.url'.
    echo Openning '<namefile>.url' in Finder, under OSX, will open '<url>' in the default browser.
    exit 1
fi

file=$1.url
url=$2
echo '[InternetShortcut]' > $file
echo -n 'URL=' >> $file
echo $url >> $file
#echo 'IconIndex=0' >> $file

Η χρήση του έχει ως (το url.sh θεωρείτε το αρχείο με τον bash κώδικα):

./url.sh filename http://site.com/

Αν αντιμετωπιστούν θέματα δικαιωμάτων, απλά δίνουμε:

chmod +x url.sh

 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×