码迷,mamicode.com
首页 >  
搜索关键字:ln -s    ( 1954个结果
Linux常用命令(二十八) - ln
ln是linux中又一个非常重要命令,它的功能是为某一个文件在另外一个位置建立一个同步的链接. 当我们需要在不同的目录,用到相同的文件时,我们不需要在每一个需要的目录下都放一个必须相同的文件,我们只要在某个固定的目录,放上该文件,然后在其它的目录下用ln命令链接(link)它就可以,不必重复的占用磁盘空间。 1.命令格式:...
分类:系统相关   时间:2014-11-27 18:28:50    阅读次数:259
在CentOS 5.5上使用sed遇到的一个bug
在 CentOS 5.5 上使用 sed 遇到一个bug $?echo?AAA?>?config $?ln?-s?config?cfg $?sed?-i?‘s/AAA/aaa/‘?cfg sed:?ck_follow_symlink:?couldn‘t?lstat?c/config:?No?such?file?or?directory...
分类:其他好文   时间:2014-11-27 14:41:43    阅读次数:185
ln in windows - junction usage
#Parametersjunction [-s] [-q] -q Don't print error messages (quiet) -s Recurse subdirectories#create linkusage: junction example: juncti...
分类:Windows程序   时间:2014-11-26 13:41:57    阅读次数:161
Leviathan系列4-7
level4:二进制转ascii,python脚本.trash/bin#出现一串二进制importsysa="0101010001101001011101000110100000110100011000110110111101101011011001010110100100001010"foriina.split(‘‘):sys.stdout.write(chr(int(i,2)))level5:符号链接,ln命令./leviathan5#提示Cannotfind..
分类:其他好文   时间:2014-11-26 11:36:59    阅读次数:204
Leetcode Reorder List
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:其他好文   时间:2014-11-20 23:12:33    阅读次数:172
RHEL7 图形界面改成多用户模式
systemduses‘targets‘insteadofrunlevels.Bydefault,therearetwomaintargets:##multi-user.target:analogoustorunlevel3#graphical.target:analogoustorunlevel5##Tosetadefaulttarget,run:##ln-sf/lib/systemd/system/<targetname>.target/etc/systemd/system/default.t..
分类:其他好文   时间:2014-11-19 16:16:55    阅读次数:609
Leetcode: Reorder List
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:其他好文   时间:2014-11-17 22:40:48    阅读次数:231
【转】tomcat 访问软连接文件夹下的网页出现404错误,description The requested resource (/xxx.html) is not available.
在 tomcat/webapps/ROOT/ 下建立一个软连接文件ln -s /home/ubuntu/report report 再到report软连接目录里建立个 report.html通过浏览器访问这个report.html时就出错。。错误如下:HTTP Status 404 - rep...
分类:Web程序   时间:2014-11-17 11:57:16    阅读次数:183
LeetCode Solutions : Reorder List
Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do this in-place without altering the nodes' values. For example, Given {1,2,3,4}, reorder itto {1,4,...
分类:其他好文   时间:2014-11-17 10:45:06    阅读次数:179
HDU 1030 数学题
给出两点,求这两点在图上的最短路径 分别以最上,左下,右下为顶点,看这个三角图形 ans=这三种情况下两点的层数差 #include "stdio.h" #include "string.h" #include "math.h" int main() { int n,m,sn,sm,rn,rm,ln,lm,ans; while (scanf("%d%d",&n,&...
分类:其他好文   时间:2014-11-16 18:45:31    阅读次数:161
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!