Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
cp -p /home/adam/.sh_history_adam /home/zebra/.sh_history_zebra
chown zebra:staff .sh_history_zebra
n=0
for i in $(find /home -name .sh_history -print)
do
((n=n+1))
cp -p $i /tmp/all_history/.sh_history$n
done