HOWTO: remove a file with a leading dash ‘-‘ in it’s name
$ ls /tmp -file_with_leading_slash.txt generic_name.log -file_with_leading_slash2.txt $ rm /tmp/-file_with_leading_slash.txt #using full path $...
$ ls /tmp -file_with_leading_slash.txt generic_name.log -file_with_leading_slash2.txt $ rm /tmp/-file_with_leading_slash.txt #using full path $...
```python import functools
Just once:
Open a terminal and type
Just a note as this could be useful one day: http://ipython.org/notebook.html
```python class AutoVivification(dict): “"”Implementation of perl’s autovivification feature.””” def init(self,arg,**kw): super(AutoVivific...
Scenario: two or more HDs configured as RAID1. One of them gets broken and the computer doesn’t boot for any reason. Problem: access data in the partition to...