| description |
code |
| Write in `$LFILE` a symlink to `$TF`. |
LFILE=/path/to/file_to_write
TF=$(mktemp)
echo DATA >$TF
sudo update-alternatives --force --install "$LFILE" x "$TF" 0
|
|
|
| description |
code |
| Write in `$LFILE` a symlink to `$TF`. |
LFILE=/path/to/file_to_write
TF=$(mktemp)
echo DATA >$TF
./update-alternatives --force --install "$LFILE" x "$TF" 0
|
|
|