mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
8 lines
194 B
Bash
Executable File
8 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p /mnt/data/.home
|
|
if [ ! -f /mnt/data/.home/.ash_history ]; then
|
|
cp /root/.ash_history /mnt/data/.home/.ash_history
|
|
fi
|
|
ln -sf /mnt/data/.home/.ash_history /root/.ash_history
|