6 lines
125 B
Bash
Executable File
6 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
echo "Add this script to autostart"
|
|
mkdir -p ./temp
|
|
sudo mount -t tmpfs -o size=2m tmpfs ./temp/
|
|
echo "Mounted!"
|