You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
287 B
10 lines
287 B
#!/bin/bash
|
|
|
|
sv_scripts_dir="/home/kevin/coding/spotify-lib-vis/src/scripts"
|
|
systemd_dir="/etc/systemd/system"
|
|
script_name="update-history"
|
|
|
|
for ext in "service" "timer" ; do
|
|
filename="$script_name"."$ext"
|
|
sudo ln -s "$sv_scripts_dir"/"$filename" "$systemd_dir"/"$filename"
|
|
done
|