This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| arg=${@} | |
| for (( i=0; i < ${#arg}; i+=1 )) ; do | |
| echo -n "${arg:$i:1}" | |
| sleep 0.05 | |
| done | |
| echo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| clear | |
| while : | |
| do | |
| clear | |
| scriptreplay timing.out script.out | |
| clear | |
| scriptreplay timing1.out script1.out | |
| clear | |
| sleep 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.profile: executed by the command interpreter for login shells. | |
| # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login | |
| # exists. | |
| # see /usr/share/doc/bash/examples/startup-files for examples. | |
| # the files are located in the bash-doc package. | |
| # the default umask is set in /etc/profile; for setting the umask | |
| # for ssh logins, install and configure the libpam-umask package. | |
| echo "Welcome to CHRISTOFFEN CORPORATION TeamLink" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| set_term_title(){ | |
| echo -en "\033]0;$1\a" | |
| } | |
| set_term_title "CHRISTOFFEN CORPORATION (TM) Termlink" | |
| bash ./.welcome "Welcome to CHRISTOFFEN CORPORATION (TM) Termlink" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * The second revision to polish up the code a bit more. | |
| * (c) 2015 MGage Morgan | |
| */ | |
| import Foundation | |
| public class bmi { | |
| public static func pounds(weight: Double, height: Double) { | |
| let Height = height * height | |
| let thirds = weight / Height |
NewerOlder