20 lines
160 B
Bash
20 lines
160 B
Bash
#!/bin/bash
|
|
|
|
# Script to ramdiskify things
|
|
|
|
Init()
|
|
{
|
|
if [[ -L $1 ]] && [[ -e $1 ]]; then
|
|
#statements
|
|
fi
|
|
}
|
|
|
|
Sync()
|
|
{
|
|
|
|
}
|
|
|
|
# TODO Optargs block
|
|
|
|
|