代码搜索:self
找到约 10,000 项符合「self」的源代码
代码结果 10,000
www.eeworm.com/read/339483/12230455
sh self-document.sh
#!/bin/bash
# self-document.sh: self-documenting script
# Modification of "colm.sh".
DOC_REQUEST=70
if [ "$1" = "-h" -o "$1" = "--help" ] # Request help.
then
echo; echo "Usage: $0 [directory
www.eeworm.com/read/339483/12230463
sh self-destruct.sh
#!/bin/bash
# self-destruct.sh
kill $$ # Script kills its own process here.
# Recall that "$$" is the script's PID.
echo "This line will not echo."
# Instead, the shell sends a "Terminated
www.eeworm.com/read/339483/12230601
sh self-copy.sh
#!/bin/bash
# self-copy.sh
# This script copies itself.
file_subscript=copy
dd if=$0 of=$0.$file_subscript 2>/dev/null
# Suppress messages from dd: ^^^^^^^^^^^
exit $?
www.eeworm.com/read/339483/12231436
sh self-mailer.sh
#!/bin/sh
# self-mailer.sh: Self-mailing script
adr=${1:-`whoami`} # Default to current user, if not specified.
# Typing 'self-mailer.sh wiseguy@superdupergenius.com'
#+ sends this script to tha
www.eeworm.com/read/339483/12231763
sh self-source.sh
#!/bin/bash
# self-source.sh: a script sourcing itself "recursively."
# From "Stupid Script Tricks," Volume II.
MAXPASSCNT=100 # Maximum number of execution passes.
echo -n "$pass_count "
# At
www.eeworm.com/read/339483/12231795
sh self-exec.sh
#!/bin/bash
# self-exec.sh
echo
echo "This line appears ONCE in the script, yet it keeps echoing."
echo "The PID of this instance of the script is still $$."
# Demonstrates that a subshell is no
www.eeworm.com/read/251840/12316119
html 16.2.10 self属性.html
self.status="self属性测试"
self.document.write("self属性测试");
self.moveTo(100,100);
www.eeworm.com/read/250043/12441444
java self1.java
class Person{
private String name;
private Person friend;
Person(String name){
this.name = name;
}
void setFriend(Person friend){
this.friend = friend;
}
String getName
www.eeworm.com/read/130818/14173360