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