| | 1 | = How do I see hidden files/files that begin with a period? = |
| | 2 | |
| | 3 | On most linux and unix based servers (like we have at May First/People Link), files that begin with a period are hidden from view by default. |
| | 4 | |
| | 5 | If you want to see these files, you need to take an extra step. |
| | 6 | |
| | 7 | == Secure FTP == |
| | 8 | |
| | 9 | If you are using WinSCP, check "Show hidden files" in the Environment -> Panels section (see [http://winscp.net/eng/docs/ui_pref_panels here]). |
| | 10 | |
| | 11 | If you are using Fugu, select SFTP → Show Hidden Files. |
| | 12 | |
| | 13 | If you are using Cyberduck, select View > Show Hidden Files. |
| | 14 | |
| | 15 | == Secure Shell == |
| | 16 | |
| | 17 | In secure shell, add the -a argument to the ls command: |
| | 18 | |
| | 19 | {{{ |
| | 20 | ls -a |
| | 21 | }}} |
| | 22 | |
| | 23 | |