mirror of https://schlomp.space/tastytea/hashboot
12 lines
103 B
Plaintext
12 lines
103 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
case $1 in
|
||
|
add)
|
||
|
hasboot index
|
||
|
;;
|
||
|
remove)
|
||
|
hasboot index
|
||
|
;;
|
||
|
esac
|
||
|
|