pwd - вывести текущую директорию (print working directory)
ls - вывести содержимое директории (list directory content)
ls --all --human-readable -l _путь_| {"sidebarBg":"#263238","sidebarText":"#FFFFFF","sidebarUnreadText":"#FFFFFF","sidebarTextHoverBg":"#13191C","sidebarTextActiveBorder":"#80CBC4","sidebarTextActiveColor":"#FFFFFF","sidebarHeaderBg":"#2E3A40","sidebarHeaderTextColor":"#FFFFFF","onlineIndicator":"#50FA7B","awayIndicator":"#E0B333","dndIndicator":"#F74343","mentionBg":"#13191C","mentionBj":"#13191C","mentionColor":"#FFFFFF","centerChannelBg":"#13191C","centerChannelColor":"#FFFFFF","newMessageSeparator":"#f80","linkColor":"#2389D7","buttonBg":"#26A970","buttonColor":"#FFFFFF","errorTextColor":"#FD5960","mentionHighlightBg":"#2E3A40","mentionHighlightLink":"#2F81B7","codeTheme":"solarized-dark"} |
| # Navigating | |
| visit('/projects') | |
| visit(post_comments_path(post)) | |
| # Clicking links and buttons | |
| click_link('id-of-link') | |
| click_link('Link Text') | |
| click_button('Save') | |
| click('Link Text') # Click either a link or a button | |
| click('Button Value') |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="initial-scale=1"> | |
| <title></title> | |
| <style type="text/css" media="screen"> | |
| body { | |
| font-size: calc(1em + .5vw); |
| # Русский перевод для https://github.com/plataformatec/devise/tree/v4.7.1 | |
| # Другие переводы на https://github.com/plataformatec/devise/wiki/I18n | |
| ru: | |
| devise: | |
| confirmations: | |
| confirmed: "Ваша учётная запись успешно подтверждена." | |
| send_instructions: "В течение нескольких минут вы получите письмо с инструкциями по подтверждению вашей учётной записи." | |
| send_paranoid_instructions: "Если ваш адрес email есть в нашей базе данных, то в течение нескольких минут вы получите письмо с инструкциями по подтверждению вашей учётной записи." | |
| failure: |
| @media (min-width: 769px) { | |
| [class^="col-"] { | |
| float: left; | |
| padding: 0 1rem; | |
| } | |
| .col-1 { | |
| width: calc(100% / 12); | |
| } |
| <div class="loading-dots"> | |
| <span></span> | |
| <span></span> | |
| <span></span> | |
| <span></span> | |
| </div> |
| function changeBackground() { | |
| //change color every frame | |
| //initialise colors ( hue, lightness) | |
| var hue = 360; | |
| var light = 0; | |
| function changeHue() { | |
| var col1 = Math.abs((hue % 720) - 360); | |
| var col2 = Math.abs( ( (hue+90) % 720) - 360); | |
| hue++ ; |
| <a href="#" class="close"> |
| .centered { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| text-align: center; | |
| z-index: 1; | |
| -webkit-transform: translate(-50%, -50%); | |
| -moz-transform: translate(-50%, -50%); | |
| -ms-transform: translate(-50%, -50%); | |
| -o-transform: translate(-50%, -50%); |