mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
9 lines
121 B
Bash
Executable File
9 lines
121 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "bind 'set mark-symlinked-directories on'" >> /root/.bashrc
|
|
|
|
while [ true ]; do
|
|
sleep 1;
|
|
done
|