system changes
This commit is contained in:
parent
7a1cc2875a
commit
cdfc984e86
2 changed files with 70 additions and 0 deletions
37
macos.local/.flake/home/scripts/manage-system.org
Normal file
37
macos.local/.flake/home/scripts/manage-system.org
Normal file
|
@ -0,0 +1,37 @@
|
|||
#+title: System Management Script
|
||||
|
||||
#+begin_src sh
|
||||
#!/bin/sh
|
||||
|
||||
usage ()
|
||||
{
|
||||
echo "Usage: $0 [-u/-i]"
|
||||
}
|
||||
|
||||
dir="$pwd"
|
||||
cd ~/.dotfiles || exit 1
|
||||
|
||||
while getopts ":hui" arg; do
|
||||
case "$arg" in
|
||||
h)
|
||||
usage
|
||||
cd "$dir" || exit 1
|
||||
exit 0
|
||||
;;
|
||||
u)
|
||||
make update
|
||||
cd "$dir" || exit 1
|
||||
exit 0
|
||||
;;
|
||||
i)
|
||||
make install
|
||||
cd "$dir" || exit 1
|
||||
exit 0
|
||||
;;
|
||||
,*)
|
||||
cd "$dir" || exit 1
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
#+end_src
|
33
macos.local/.flake/home/scripts/test.sh
Normal file
33
macos.local/.flake/home/scripts/test.sh
Normal file
|
@ -0,0 +1,33 @@
|
|||
#!/bin/sh
|
||||
|
||||
usage ()
|
||||
{
|
||||
echo "Usage: $0 [-u/-i]"
|
||||
}
|
||||
|
||||
dir="$pwd"
|
||||
cd ~/.dotfiles || exit 1
|
||||
|
||||
while getopts ":hui" arg; do
|
||||
case "$arg" in
|
||||
h)
|
||||
usage
|
||||
cd "$dir" || exit 1
|
||||
exit 0
|
||||
;;
|
||||
u)
|
||||
make update
|
||||
cd "$dir" || exit 1
|
||||
exit 0
|
||||
;;
|
||||
i)
|
||||
make install
|
||||
cd "$dir" || exit 1
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
cd "$dir" || exit 1
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
Loading…
Add table
Reference in a new issue