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.
9 lines
247 B
9 lines
247 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
|
|
sudo cp "$sv_scripts_dir"/"$script_name"."$ext" "$systemd_dir"
|
|
done
|