# Dashed Filename
https://www.webservertalk.com/dashed-filename
dash (-) is generally used by commands to specify options and arguments.
## Create
```
touch -- -filename
```

## Delete
```
rm -rf -filename
```

## Open and Read Filename Starting with Dash
Create a -meowhecker
```
touch -- -meowhecker
```

Write some string into the dash file
```
echo "I'm meowhecker" > -meowhecker
```

```
cat -- -meowhecker
```

Also you can use ./ or < option before the dash(-)file to view the content of the file.


## Copy

## List filename
